Ejemplo n.º 1
0
 public BookAdd(string stock, int position,
                string direction,
                string price,
                string qtd,
                string brokerId,
                string dateAndTime,
                string orderId,
                int qtdOffers,
                BookCommandType commandType) : base(commandType)
 {
     this.stock  = stock;
     Position    = position;
     Direction   = direction;
     Price       = price;
     Qtd         = qtd;
     BrokerId    = brokerId;
     DateAndTime = dateAndTime;
     OrderId     = orderId;
     QtdOffers   = qtdOffers;
 }
Ejemplo n.º 2
0
 public BookHeader(BookCommandType bookCommandType)
 {
     BookCommandType = bookCommandType;
 }