Exemplo n.º 1
0
 public RuleResult(SplittingQuery.Part queryPart, NextStepEnum nextStep, bool lastConditionAdded = false)
 {
     this.Query              = new SplittingQuery(new[] { queryPart });
     this.NextStep           = nextStep;
     this.LastConditionAdded = lastConditionAdded;
 }
Exemplo n.º 2
0
 public RuleResult(SplittingQuery.Part[] queryParts, NextStepEnum nextStep)
 {
     this.Query    = new SplittingQuery(queryParts);
     this.NextStep = nextStep;
 }
Exemplo n.º 3
0
 public RuleResult(SplittingQuery sq, NextStepEnum nextStep, bool lastConditionAdded = false)
 {
     this.Query              = sq;
     this.NextStep           = nextStep;
     this.LastConditionAdded = lastConditionAdded;
 }