/* * Adds a Mentee to this MentorGroup */ public void AddMentee(Mentee m) { if (!Mentees.Contains(m)) { System.Diagnostics.Debug.WriteLine("Adding " + m.StudentNumber); Mentees.Add(m); } }
/* * */ public void RemoveMentee(Mentee m) { // todo : implement }
public void RecordAttendance(Mentee m, AttendanceStatus t) { RecordAttendance(m.StudentNumber, t); }