public Student AddStudent(string studentID, string fullname, char gender, string birthday, string socialID, string classID) { if (repo.IsClassExist(classID) == false) { repo.AddClass(classID); } return repo.AddStudent(studentID, fullname, gender, birthday, socialID, classID); }