Beispiel #1
0
 public void Handle(StuffArchived e)
 {
     if (CanHandle(e.Id))
     {
         _model.StuffArchived(e.StuffId);
     }
 }
Beispiel #2
0
 public void When(StuffArchived e)
 {
     // Stop tracking this Stuff from our Inbox HashSet
     Inbox.Remove(e.StuffId);
 }
Beispiel #3
0
 public void When(StuffArchived e)
 {
     // Stop tracking this Stuff from our Inbox HashSet
     Inbox.Remove(e.StuffId);
 }