public ActionResult AddNewInterest(string username, string addInterest)
        {
            studentDAL.AddStudentInterest(username, addInterest);
            Student model = studentDAL.GetStudent(username);

            return(View("Index", model));
        }