|
@@ -17,15 +17,15 @@ public class Bank {
|
17
|
17
|
|
18
|
18
|
public Bank() {
|
19
|
19
|
accounts.put(1000, new BasicAccount(new AccountData(
|
20
|
|
- 1000, "Example 1", "example1@gmail.com", 500
|
|
20
|
+ 1000, "Jared Walrus", "fisher@abe.com", 500
|
21
|
21
|
)));
|
22
|
22
|
|
23
|
23
|
accounts.put(2000, new PremiumAccount(new AccountData(
|
24
|
|
- 2000, "Example 2", "example2@gmail.com", 200
|
|
24
|
+ 2000, "Biggie Younger", "southerKingdom@fisher.com", 200
|
25
|
25
|
)));
|
26
|
26
|
|
27
|
27
|
accounts.put(3000, new PremiumAccount(new AccountData(
|
28
|
|
- 2000, "Example 3", "example2@gmail.com", 100
|
|
28
|
+ 3000, "Usurper TeeTay", "westernUnion@bank.com", 100
|
29
|
29
|
)));
|
30
|
30
|
}
|
31
|
31
|
|