Example #1
0
 public void AddMeetingAttend(Participant p)
 {
     MeetingAttendees.Add(p);
 }
Example #2
0
 public void AddUnavailable(Participant p)
 {
     NotAvailable.Add(p);
 }
Example #3
0
 public void RequestAddPs(Participant p)
 {
     RequestAttend.Add(p);
 }
Example #4
0
 public void RemoveAttendee(Participant par)
 {
     MeetingAttendees.Remove(par);
 }