public IActionResult Delete(Aluno aluno) { Aluno alu = AlunoRepo.GetAluno(aluno.Codigo); if (alu != null) { AlunoRepo.Delete(aluno.Codigo); TempData["Message"] = "Aluno " + alu.Nome + " foi removido"; } return(RedirectToAction("Index")); }
public IActionResult Delete(int?id) { if (id == null) { return(BadRequest()); } Aluno aluno = AlunoRepo.GetAluno(id.Value); if (aluno == null) { return(NotFound()); } return(View(aluno)); }
public IActionResult Edit(int?id) { if (id == null) { return(BadRequest()); } Aluno aluno = AlunoRepo.GetAluno(id.Value); if (aluno == null) { return(NotFound()); } ViewBag.Cidades = CidadeRepo.ListarCidades(); return(View(aluno)); }