public OrderReadyNotification(int id, ComplexOrder order)
 {
     this.Id    = id;
     this.Order = order;
 }
 public OrderReadyNotification(ComplexOrder order)
 {
     this.Id = CurrId;
     CurrId++;
     this.Order = order;
 }