Skip to content

Commit 353db90

Browse files
author
Andrew Koerner
committed
thug life
1 parent 9f4364e commit 353db90

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

project/src/market_simulator/MarketSimulator.java

100644100755
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
package market_simulator;
2+
3+
import javax.swing.JTextField;
4+
5+
import common.Account;
6+
7+
public class MarketSimulator {
8+
9+
private Account account;
10+
11+
public MarketSimulator(){}
12+
13+
public Account getAccount() {
14+
return account;
15+
}
16+
17+
public Account getAccount(String id) {
18+
return account;
19+
}
20+
21+
public String getCurrentExchangRateUSDToEuro() {
22+
// TODO Auto-generated method stub
23+
return null;
24+
}
25+
26+
public String getCurrentExchangRateEUROToUSD() {
27+
// TODO Auto-generated method stub
28+
return null;
29+
}
30+
31+
}

0 commit comments

Comments
 (0)