Beispiel #1
0
 public void removeActiveMP(MeetingProposal mp)
 {
     if (activeMP.Contains(mp))
     {
         activeMP.Remove(mp);
     }
 }
Beispiel #2
0
 public void removeMyMP(MeetingProposal mp)
 {
     if (myMP.Contains(mp))
     {
         myMP.Remove(mp);
     }
 }
Beispiel #3
0
 public void addActiveMP(MeetingProposal mp)
 {
     activeMP.Add(mp);
 }
Beispiel #4
0
 public void addMyMP(MeetingProposal mp)
 {
     myMP.Add(mp);
 }