Example #1
0
 public ControllerStateRule(IContextControllerStateRule controllerStateRule): base(controllerStateRule){
     ControllerType = controllerStateRule.ControllerType;    
     ControllerState=controllerStateRule.ControllerState;    
 }
Example #2
0
 public ControllerStateRulePermission(IContextControllerStateRule logicRule)
     : base(OperationName, logicRule)
 {
     ControllerState = logicRule.ControllerState;
     ControllerType  = logicRule.ControllerType;
 }
Example #3
0
 public ControllerStateRule(IContextControllerStateRule controllerStateRule) : base(controllerStateRule)
 {
     ControllerType  = controllerStateRule.ControllerType;
     ControllerState = controllerStateRule.ControllerState;
 }
Example #4
0
 protected ControllerStateRulePermission(string operation, IContextControllerStateRule logicRule)
     : base(operation, logicRule)
 {
 }