Inheritance: IDomainEvent
 public void When(AccountBilled @event)
 {
     var account = FetchModel(@event.AccountNumber);
     account.Recency = @event.Recency.Value;
 }
Exemple #2
0
 void IHandleAccountStateTransitions.When(AccountBilled @event)
 {
     recency = @event.Recency;
 }
Exemple #3
0
 void IAccountState.When(AccountBilled @event)
 {
     recency = @event.Recency;
 }