Exemplo n.º 1
0
 public void NotifySubscribers(IEventPublisher source, Event evt)
 {
     PublisherEvent?.Invoke(source, evt);
 }
Exemplo n.º 2
0
 public void OnRaiseEvent(MyEventArgs e)
 {
     e.Message += $" at {DateTime.Now}";
     PublisherEvent?.Invoke(this, e);
 }