Ejemplo n.º 1
0
        public async Task <IActionResult> ListarPessoa(string id)
        {
            var result = await _service.ListarPorPessoa(id);

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