Example #1
0
 public ActionResult EditStudentParentInfo(int id, string father_name, string father_phone_number, string mother_name,
                                           string mother_phone_number)
 {
     StudentActions.editStudent_parentInfo(id, father_name, father_phone_number, mother_name,
                                           mother_phone_number);
     return(RedirectToAction("EditStudent", "Student", new { id }));
 }