Example #1
0
        public async Task <IActionResult> Listar()
        {
            var result = await _service.Listar();

            return(Result(result.ToList().ConvertAll(c => (EmpresaResponse)c)));
        }