public GetUserByIdQueryHandler(EfDbContext applicationDbContext, IApplicationUserDtoConverter dtoConverter)
     : base(applicationDbContext)
 {
     _dtoConverter = dtoConverter;
 }
 public UserController(ICommandDispatcher commandDispatcher, IQueryDispatcher queryDispatcher, IApplicationUserDtoConverter converter)
 {
     _commandDispatcher = commandDispatcher;
     _converter         = converter;
     _queryDispatcher   = queryDispatcher;
 }