public OrderList(string ident, OrderProcessorDataSnapshot neighborLanes = null) : this() { this.ident = ident; this.neighborLanesWhenOrdersAll = neighborLanes; }
public OrderList(string ident, List <Order> ordersInit, OrderProcessorDataSnapshot neighborLanes = null) : this(ident, neighborLanes) { this.InsertRange(0, ordersInit); }