public async Task <ActionResult <Pessoa> > GetPessoaById(int id)
        {
            var pessoa = await _repositoryPessoa.GetById(id);

            return(pessoa == null?NotFound() : Ok(pessoa));
        }
Esempio n. 2
0
 public Pessoa GetById(int id)
 {
     return(repo.GetById(id));
 }