Пример #1
0
 public OrderActionEventArgs(Action action, Order order)
 {
     this.action = action;
     this.order = order;
 }
Пример #2
0
 public Command(Action action, long orderId, String symbol, bool isBuy, int price, int quantity)
 {
     this.Action = action;
     this.Order = new Order(orderId, symbol, isBuy, price, quantity);
 }