Exemple #1
0
        public Role()
        {
            RoleFactory theRoleFactory = new RoleFactory();

            _repository = theRoleFactory.createRepository();
            if (_repository == null)
            {
                throw new NotImplementedException();
            }

            this._Actions = new Iesi.Collections.Generic.HashedSet <Action>();

            this._Users = new Iesi.Collections.Generic.HashedSet <User>();
        }