public ActionResult DeleteStudentInterest(string username, string interest)
        {
            studentDAL.DeleteStudentInterest(username, interest);
            Student model = studentDAL.GetStudent(username);

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