예제 #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);
 }