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