public string LeaveClass(int classID, string username)
        {
            ModifyStudentDetail msd = new ModifyStudentDetail();

            msd.Delete(classID, new ModifyStudent().GetIDByStudentUsername(username));
            return("true");
        }
 public string JoinClass(int ClassID, string username, int dayID, int timeID, int branchID)
 {
     if (CheckSameSchedule(new ModifyStudent().GetIDByStudentUsername(username), dayID, timeID, branchID))
     {
         ModifyStudentDetail msd = new ModifyStudentDetail();
         msd.Insert(ClassID, new ModifyStudent().GetIDByStudentUsername(username));
         return("true");
     }
     else
     {
         return("Đăng ký bị trùng ngày và giờ học");
     }
 }