public ClienteQueryHandlerTest()
        {
            var _serviceProvider = new StartInjection().ServiceProvider;

            _clientQueryHandler = _serviceProvider.GetService <IClientQueryHandler>();
        }
Ejemplo n.º 2
0
 public ClienteController(IClienteHandler clienteHandler, IClientQueryHandler clientQueryHandler, IHttpContextAccessor accessor)
 {
     _clienteHandler     = clienteHandler;
     _clientQueryHandler = clientQueryHandler;
     _accessor           = accessor;
 }