Beispiel #1
0
 public RuleBook(RuleSet Owner)
 {
     this.Owner = Owner;
 }
Beispiel #2
0
 public ValueRuleBook(RuleSet Owner)
     : base(Owner)
 {
     ResultType = typeof(RT);
 }
Beispiel #3
0
 public CheckRuleBook(RuleSet Owner)
     : base(Owner)
 {
     ResultType = typeof(CheckResult);
 }
Beispiel #4
0
 public PerformRuleBook(RuleSet Owner) : base(Owner)
 {
     ResultType = typeof(PerformResult);
 }
Beispiel #5
0
 public RuleEngine(NewRuleQueueingMode QueueingMode)
 {
     this.QueueingMode = QueueingMode;
     Rules             = new RuleSet(this);
 }