//
        // GET: /Student/

        public ActionResult Index()
        {
            var list = MyDAL.GetAllStudents();

            return(View("List", list));
        }
        //
        // GET: /Student/

        public ActionResult Index()
        {
            var data = MyDAL.GetAllStudents();

            return(View("List", data));
        }