public async Task <IActionResult> ListarPessoa(string id) { var result = await _service.ListarPorPessoa(id); return(Result(result.ToList().ConvertAll(c => (EnderecoResponse)c))); }