Esempio n. 1
0
        public void AddOU(int ouID, int roleID)
        {
            IRoleService         service = this.CreateSubClient();
            ICommunicationObject comm    = service as ICommunicationObject;

            comm.Using(client =>
            {
                service.AddOU(ouID, roleID);
            });
        }