public void Handle(StuffTrashed e) { if (CanHandle(e.Id)) { _model.StuffTrashed(e.StuffId); } }
public void When(StuffTrashed e) { // Stop tracking this Stuff from our Inbox HashSet Inbox.Remove(e.StuffId); }