Exemplo n.º 1
0
 public void When(CustomerPaymentAdded e)
 {
     Balance = e.NewBalance;
     MaxTransactionId = e.Transaction;
 }
Exemplo n.º 2
0
 public void When(CustomerPaymentAdded e)
 {
     Balance          = e.NewBalance;
     MaxTransactionId = e.Transaction;
 }
 public void When(CustomerPaymentAdded e)
 {
     _store.UpdateOrThrow(e.Id, v => v.AddTx(e.PaymentName, e.Payment, e.NewBalance, e.TimeUtc));
 }