public IActionResult GetById(long id) { var aluno = _alunoRepositorio.Find(id); if (aluno == null) { return(NotFound()); } return(new ObjectResult(aluno)); }
// GET: api/Produtos/5 public Aluno GetAluno(string aluno) { var alunos = _alunoRepositorio.Find(aluno); if (aluno == null) { throw new HttpResponseException(new HttpResponseMessage(HttpStatusCode.NotFound)); } return(alunos); }