public ActionResult StudentUpdateForm(int id) { Student thisStudent = Student.Find(id); return(View("StudentUpdate", thisStudent)); }
public ActionResult StudentIndex() { List <Student> allStudents = Student.GetAll(); return(View(allStudents)); }