Exemplo n.º 1
0
        private BindingList <SecurityGroup> GetSecurityGroups(string companyID)
        {
            BindingList <SecurityGroup> itemList = new BindingList <SecurityGroup>(_serviceAgent.GetSecurityGroups(companyID).ToList());

            Dirty       = false;
            AllowCommit = false;
            return(itemList);
        }
Exemplo n.º 2
0
 private BindingList <SecurityGroup> GetSecurityGroups(string companyID)
 {//note this get is to the singleton repository...
     return(new BindingList <SecurityGroup>(_serviceAgent.GetSecurityGroups(companyID).ToList()));
 }