public BusinessRulesFacade(IRuleProcessorFactory ruleProcessorFactory, IRuleModuleService ruleModuleService)
 {
     this._ruleProcessorFactory = ruleProcessorFactory;
     this._ruleModuleService    = ruleModuleService;
 }
 public RuleModuleTestService(IBooleanRuleCompiler booleanRuleCompiler, IActionRuleCompiler actionRuleCompiler, IUnitOfWork unitOfWork, IRuleModuleService ruleModuleService)
 {
     ruleProcessor           = new RuleProcessor(booleanRuleCompiler, actionRuleCompiler);
     this.unitOfWork         = unitOfWork;
     this._ruleModuleService = ruleModuleService;
 }