Exemple #1
0
 public void AddRuleCondition(RuleCondition ruleCondition)
 {
     if (ruleCondition == null || name == "")
     {
         throw new ArgumentException("RuleCondition cannot be null");
     }
     this.ruleConditions.Add(ruleCondition);
 }
Exemple #2
0
 internal void SetCondition(RuleCondition condition)
 {
     this.ruleCondition = condition;
 }