Ejemplo n.º 1
0
 public void Update(OrderBookData other)
 {
     Price  = other.Price;
     Amount = other.Amount;
 }
Ejemplo n.º 2
0
 public OrderBookTop(OrderBookData ask, OrderBookData bid)
 {
     Ask = ask;
     Bid = bid;
 }