Пример #1
0
 public OrderList(string ident, OrderProcessorDataSnapshot neighborLanes = null) : this()
 {
     this.ident = ident;
     this.neighborLanesWhenOrdersAll = neighborLanes;
 }
Пример #2
0
 public OrderList(string ident, List <Order> ordersInit, OrderProcessorDataSnapshot neighborLanes = null)
     : this(ident, neighborLanes)
 {
     this.InsertRange(0, ordersInit);
 }