コード例 #1
0
ファイル: Account.cs プロジェクト: y2k4life/Timeline
 public void When(AccountClosed e)
 {
     CurrentStatus = "Closed";
 }
コード例 #2
0
        public void CloseAccount(string reason)
        {
            var e = new AccountClosed(reason);

            Apply(e);
        }