Пример #1
0
 public AccountUserController(
     IMapper mapper,
     IAccountUserBLL accountUserBLL,
     ICommandHandler <CreateUserCommand> commandHandler)
 {
     _mapper         = mapper;
     _accountUserBLL = accountUserBLL;
     _commandHandler = commandHandler;
 }
Пример #2
0
 public UserCreatedEventHandler(IMapper mapper, IAccountUserBLL accountUserBLL, IKakfaProducer producer)
 {
     _mapper         = mapper;
     _accountUserBLL = accountUserBLL;
     _producer       = producer;
 }