Exemplo n.º 1
0
 /*
  * 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);
     }
 }
Exemplo n.º 2
0
 /*
  *
  */
 public void RemoveMentee(Mentee m)
 {
     // todo : implement
 }
Exemplo n.º 3
0
 public void RecordAttendance(Mentee m, AttendanceStatus t)
 {
     RecordAttendance(m.StudentNumber, t);
 }