public RuleModuleTestService(IBooleanRuleCompiler booleanRuleCompiler, IActionRuleCompiler actionRuleCompiler, IUnitOfWork unitOfWork, IRuleModuleService ruleModuleService)
 {
     ruleProcessor           = new RuleProcessor(booleanRuleCompiler, actionRuleCompiler);
     this.unitOfWork         = unitOfWork;
     this._ruleModuleService = ruleModuleService;
 }
Exemplo n.º 2
0
 public RuleProcessor(IBooleanRuleCompiler booleanRuleCompiler, IActionRuleCompiler actionRuleCompiler)
 {
     this._booleanRuleCompiler = booleanRuleCompiler;
     this._actionRuleCompiler  = actionRuleCompiler;
 }