示例#1
0
 public static ICommand When(PaymentReceived @event) => new CompletePayment();
示例#2
0
 public Order When(PaymentReceived @event) => this;
示例#3
0
 public Order When(PaymentReceived @event)
 {
     Payed = true;
     return(this);
 }