Beispiel #1
0
 private void NodePresentationChanged()
 {
     PresentationChanged?.Invoke();
 }
Beispiel #2
0
 public void Handle(PresentationChanged domainEvent)
 {
     _mailGateway
     .GetMailerWith("Session changed", GetEmailBody(domainEvent, domainEvent.PresentationId))
     .SendTo(_repository.Find <UserProfile>().AdminEmails());
 }
Beispiel #3
0
 public void RaisePresentationChanged()
 {
     PresentationChanged?.Invoke(this);
 }