// GET: Student/Show/{id}
        public ActionResult Show(int id)
        {
            //Instantiating the StudentDataController
            StudentDataController Controller = new StudentDataController();
            //Access FindStudent(int id)Method
            Student Student = Controller.FindStudent(id);

            return(View(Student));
        }
        // GET: Student/List
        // Or GET: Student/List?Searchkey= {SearchKey}
        public ActionResult List(string SearchKey = null)
        {
            //Instantiating the StudentDataController
            StudentDataController Controller = new StudentDataController();
            //Access ListStudents() method
            List <Student> Students = Controller.ListStudents(SearchKey);

            return(View(Students));
        }