public async Task <ActionResult <Pessoa> > GetPessoas() { return(Ok(await _repositoryPessoa.GetAll())); }
public IEnumerable <Pessoa> GetAll() { return(repo.GetAll()); }