Beispiel #1
0
 public void RaiseEmailSent()
 {
     DomainEvent.Raise(new SendEmailEvent {
         Email = this
     });
 }
Beispiel #2
0
 public void OrderComplete()
 {
     DomainEvent.Raise(new OrderCompletedEvent(DateTime.UtcNow, this));
 }
Beispiel #3
0
 public void RegisterStudent()
 {
     DomainEvent.Raise(new StudentRegisterEvent {
         Student = this
     });
 }