public ActionResult DeleteStudentSkill(string username, string skill) { studentDAL.DeleteStudentSkill(username, skill); Student model = studentDAL.GetStudent(username); return(View("Index", model)); }