public ActionResult StudentInfo()
        {
            StudentViewModel model = new StudentViewModel();

                //model.StudentName = model.State;

            return View(model);
        }
 //public string StudentName { get; set; }
 //public int Grade { get; set; }
 //
 // GET: /Student/
 public ActionResult Index()
 {
     StudentModels stdm = new StudentModels();
     StudentViewModel stdvm = new StudentViewModel(stdm);
     return View(stdvm);
 }
 public ActionResult Results(StudentViewModel model)
 {
     // calls to code to update model, validation, LOB code, etc...
     return View(model);
 }