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