예제 #1
0
 public void Handle(AccountCreatedEvent <T> evt)
 {
     Process(evt, new { evt.InitialPassword, evt.VerificationKey });
 }
예제 #2
0
 public void Handle(AccountCreatedEvent evt)
 {
     notificationService.SendAccountCreate(evt.Account);
 }
예제 #3
0
 public void Handle(AccountCreatedEvent <TAccount> evt)
 {
     Debug.WriteLine("AccountCreatedEvent: " + evt.VerificationKey);
 }