Example #1
0
 public ActionResult <StudentInfo> Create(StudentInfo student)
 {
     _student.Insert(student);
     return(RedirectToAction("Index"));
 }