コード例 #1
0
 public ActionStateRulePermission(IContextActionStateRule logicRule)
     : base(OperationName, logicRule)
 {
     ActionId      = logicRule.ActionId;
     ActionState   = logicRule.ActionState;
     ActionContext = logicRule.ActionContext;
 }
コード例 #2
0
ファイル: ActionStateRule.cs プロジェクト: xwagner2/eXpand
 public ActionStateRule(IContextActionStateRule actionStateRule)
     : base(actionStateRule)
 {
     ActionId      = actionStateRule.ActionId;
     ActionState   = actionStateRule.ActionState;
     ActionContext = actionStateRule.ActionContext;
 }
コード例 #3
0
 protected ActionStateRulePermission(string operation, IContextActionStateRule logicRule)
     : base(operation, logicRule)
 {
 }
コード例 #4
0
ファイル: ActionStateRule.cs プロジェクト: aries544/eXpand
 public ActionStateRule(IContextActionStateRule actionStateRule)
     : base(actionStateRule) {
     ActionId = actionStateRule.ActionId;
     ActionState = actionStateRule.ActionState;
     ActionContext = actionStateRule.ActionContext;
 }