public ActionResult AddNewSkill(string username, string addSkill)
        {
            studentDAL.AddStudentSkill(username, addSkill);
            Student model = studentDAL.GetStudent(username);

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