コード例 #1
0
 public OrderReadyNotification(int id, ComplexOrder order)
 {
     this.Id    = id;
     this.Order = order;
 }
コード例 #2
0
 public OrderReadyNotification(ComplexOrder order)
 {
     this.Id = CurrId;
     CurrId++;
     this.Order = order;
 }