public BfxChildOrderTransactionEventArgs(
     BfxOrderTransactionEventKind kind,
     BfxChildOrderTransactionState state,
     DateTime time
     )
 {
     Kind  = kind;
     State = state;
     Time  = time;
 }
Beispiel #2
0
 public BfxChildOrderTransaction(BfTradingMarket market, BfChildOrderRequest request)
 {
     DebugEx.EnterMethod();
     _market = market;
     State   = new BfxChildOrderTransactionState(_market, request);
 }