public ActionResult Create(StudentViewModel student)
 {
     if (ModelState.IsValid)
     {
         var std = new StudentBusiness();
         std.Create(student);
     }
     return(RedirectToAction("Index"));
 }