Exemplo n.º 1
0
 public ActionStateRulePermission(IContextActionStateRule logicRule)
     : base(OperationName, logicRule)
 {
     ActionId      = logicRule.ActionId;
     ActionState   = logicRule.ActionState;
     ActionContext = logicRule.ActionContext;
 }
Exemplo n.º 2
0
 public ActionStateRule(IContextActionStateRule actionStateRule)
     : base(actionStateRule)
 {
     ActionId      = actionStateRule.ActionId;
     ActionState   = actionStateRule.ActionState;
     ActionContext = actionStateRule.ActionContext;
 }
Exemplo n.º 3
0
 protected ActionStateRulePermission(string operation, IContextActionStateRule logicRule)
     : base(operation, logicRule)
 {
 }
Exemplo n.º 4
0
 public ActionStateRule(IContextActionStateRule actionStateRule)
     : base(actionStateRule) {
     ActionId = actionStateRule.ActionId;
     ActionState = actionStateRule.ActionState;
     ActionContext = actionStateRule.ActionContext;
 }