public ActionResult EditarNota(int id) { var notasDAO = new NotasDAO(); Nota nota = notasDAO.BuscaPorId(id); return(View(nota)); }
public ActionResult RemoverNota(int Id) { Nota nota = notasDAO.BuscaPorId(Id); return(View(nota)); }