Beispiel #1
0
 public Rule(string name, RuleCondition condition, IList <RuleAction> thenActions)
 {
     this.behavior    = RuleReevaluationBehavior.Always;
     this.active      = true;
     this.name        = name;
     this.condition   = condition;
     this.thenActions = thenActions;
 }
 public Rule(string name, RuleCondition condition, IList<RuleAction> thenActions)
 {
     this.behavior = RuleReevaluationBehavior.Always;
     this.active = true;
     this.name = name;
     this.condition = condition;
     this.thenActions = thenActions;
 }
Beispiel #3
0
 public Rule(string name)
 {
     this.behavior = RuleReevaluationBehavior.Always;
     this.active   = true;
     this.name     = name;
 }
Beispiel #4
0
 public Rule()
 {
     this.behavior = RuleReevaluationBehavior.Always;
     this.active   = true;
 }
 public Rule(string name)
 {
     this.behavior = RuleReevaluationBehavior.Always;
     this.active = true;
     this.name = name;
 }
 public Rule()
 {
     this.behavior = RuleReevaluationBehavior.Always;
     this.active = true;
 }