public void TestaRetornoTodosCliente()
        {
            var cliResult = _clientQueryHandler.GetAll().Result;

            Assert.NotNull(cliResult);
        }
Ejemplo n.º 2
0
        public async Task <ActionResult> Get()
        {
            var result = await _clientQueryHandler.GetAll();

            return(Ok(result));
        }