public RuleConfigurable(RuleTestDelegate testDelegate, RuleExecuteDelegate execDelegate, TestModule testModule, ExecModule execModule){ TestDelegate = testDelegate; ExecDelegate = execDelegate; TestModule = testModule; ExecModule = execModule; }
public RuleConfigurable(RuleTestDelegate testDelegate, RuleExecuteDelegate execDelegate, TestModule testModule, ExecModule execModule, RuleInitContextDelefate initDelegate, InitContextModule initModule){ TestDelegate = testDelegate; ExecDelegate = execDelegate; TestModule = testModule; ExecModule = execModule; InitDelegate = initDelegate; InitModule = initModule; }
public RuleConfigurable(RuleTestDelegate testDelegate, RuleExecuteDelegate execDelegate){ TestDelegate = testDelegate; ExecDelegate = execDelegate; }
public RuleConfigurable(RuleExecuteDelegate execDelegate){ ExecDelegate = execDelegate; }