Exemplo n.º 1
0
 public void When(AccountClosed e)
 {
     CurrentStatus = "Closed";
 }
Exemplo n.º 2
0
        public void CloseAccount(string reason)
        {
            var e = new AccountClosed(reason);

            Apply(e);
        }