public ActionResult ProcessCreate(StudentModel studentModel) { StudentDAO studentDAO = new StudentDAO(); studentDAO.CreateOrUpdate(studentModel); return(View("Details", studentModel)); }