public async Task <ActionResult <Pessoa> > GetPessoaById(int id) { var pessoa = await _repositoryPessoa.GetById(id); return(pessoa == null?NotFound() : Ok(pessoa)); }
public Pessoa GetById(int id) { return(repo.GetById(id)); }