public ActionStateRulePermission(IContextActionStateRule logicRule) : base(OperationName, logicRule) { ActionId = logicRule.ActionId; ActionState = logicRule.ActionState; ActionContext = logicRule.ActionContext; }
public ActionStateRule(IContextActionStateRule actionStateRule) : base(actionStateRule) { ActionId = actionStateRule.ActionId; ActionState = actionStateRule.ActionState; ActionContext = actionStateRule.ActionContext; }
protected ActionStateRulePermission(string operation, IContextActionStateRule logicRule) : base(operation, logicRule) { }