public ActionResult UpdateStudentContactInfo(string username, string editContactInfo)
        {
            studentDAL.UpdateStudentContactInfo(username, editContactInfo);
            Student model = studentDAL.GetStudent(username);

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