Guest User

Untitled

a guest
May 20th, 2018
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public TradeOrder(Trader trader, String symbol, boolean buyOrder, boolean marketOrder, int numShares, double price)
  2. {
  3. this.trader = trader;
  4. this.symbol = symbol;
  5. this.buyOrder = buyOrder;
  6. this.marketOrder = marketOrder;
  7. this.numShares = numShares;
  8. this.price = price;
  9. }
  10. ..................
Add Comment
Please, Sign In to add comment