Example #1
0
 public DeletePersonHandlerAsync(GreetingsEntityGateway uow)
 {
     _uow = uow;
 }
 public FindPersonByNameHandlerAsync(GreetingsEntityGateway uow)
 {
     _uow = uow;
 }
 public FIndGreetingsForPersonHandlerAsync(GreetingsEntityGateway uow)
 {
     _uow = uow;
 }
 public AddGreetingHandlerAsync(GreetingsEntityGateway uow, IAmACommandProcessor postBox)
 {
     _uow     = uow;
     _postBox = postBox;
 }