//
        // GET: /MarksInput/
        public ActionResult Index()
        {
            MarksInputListModel obmodel = new MarksInputListModel();

            obmodel.MarksInputListCollection = GetStudentMarksList();
            return(View(obmodel));
        }
 //
 // GET: /MarksInput/
 public ActionResult Index()
 {
     MarksInputListModel obmodel = new MarksInputListModel();
     obmodel.MarksInputListCollection = GetStudentMarksList();
     return View(obmodel);
 }