public bool CheckAuthByModuleCodeList(string[] _ModuleCodes) { foreach (var _ModuleCode in _ModuleCodes) { bool result = WebUtil.Authorization(this.Context, _ModuleCode); if (result) { return(true); } } return(false); }
public bool CheckAuthByModuleCode(string _ModuleCode) { return(WebUtil.Authorization(this.Context, _ModuleCode)); }