Пример #1
0
 public IStatusGeneric Handle(EntityEvents callingEntity, EventCircularEvent domainEvent)
 {
     callingEntity.AddEvent(domainEvent);
     return(null);
 }
Пример #2
0
 public IStatusGeneric Handle(EntityEvents callingEntity, EventTestBeforeReturnError domainEvent)
 {
     callingEntity.AddEvent(new EventDoNothing());
     return(new StatusGenericHandler().AddError("This is a test"));
 }