Exemplo n.º 1
0
 public void AddUser(PartyManagement.Party party)
 {
     if (_groupUsers == null)
     {
         _groupUsers = new List <PartyManagement.Party>();
     }
     if (!_groupUsers.Contains(party))
     {
         _groupUsers.Add(party);
     }
 }
Exemplo n.º 2
0
 public void RemoveUser(PartyManagement.Party party)
 {
     _groupUsers.Remove(party);
 }