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