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