Beispiel #1
0
 public PersonCreateCommandHandler(IBusEventPublisher busPublisher, IPersonRepository personRepository, IMapper mapper)
 {
     _busPublisher     = busPublisher;
     _personRepository = personRepository;
     _mapper           = mapper;
 }
 public PersonDeleteCommandHandler(IBusEventPublisher busPublisher, IPersonRepository personRepository)
 {
     _busPublisher     = busPublisher;
     _personRepository = personRepository;
 }