public frmUserRoleRightSettings()
        {
            InitializeComponent();

            this._CurrentOptType = EnumOptType.Type_User;
            this._EditStatus = DefineConstantValue.EditStateEnum.OE_ReaOnly;
            this._ISysUserMasterBL = MasterBLLFactory.GetBLL<ISysUserMasterBL>(MasterBLLFactory.SysUserMaster);
            this._ISysRoleMasterBL = MasterBLLFactory.GetBLL<ISysRoleMasterBL>(MasterBLLFactory.SysRoleMaster);
            this._ISysFormMasterBL = MasterBLLFactory.GetBLL<ISysFormMasterBL>(MasterBLLFactory.SysFormMaster);
            this._IUserPurviewBL = MasterBLLFactory.GetBLL<IUserPurviewBL>(MasterBLLFactory.UserPurview);
            this._selecedFormID = 0;

            this._ListRoleMasterInfo = new List<Sys_RoleMaster_rlm_Info>();

            this._ListUserMasterInfo = new List<Sys_UserMaster_usm_Info>();

            this._seachUserAndRoleList = null;

            this._purviewUserList = null;

            this._purviewRoleList = null;

            this._isEdited = false;

            this._isAlert = false;
        }
Esempio n. 2
0
 public SysRoleMasterSearch()
 {
     InitializeComponent();
     this._sysRoleMasterBL = MasterBLLFactory.GetBLL<ISysRoleMasterBL>(MasterBLLFactory.SysRoleMaster);
 }