示例#1
0
 public OrderReadyEvent(OrderId orderId)
 {
     OrderId = orderId;
 }
示例#2
0
 protected bool Equals(OrderId other)
 {
     return(value == other.value);
 }
示例#3
0
 public Order(OrderId orderId, IReadOnlyCollection <OrderProduct> products)
 {
     OrderId  = orderId;
     Products = products;
     State    = OrderState.NotVerified;
 }