Exemplo n.º 1
0
 public ArithmeticCondition(NumericCondition c1, ArithmeticOperator op, NumericCondition c2)
 {
     this.c1 = c1;
     this.c2 = c2;
     this.op = op;
 }
Exemplo n.º 2
0
 public ComparisonCondition(NumericCondition c1, ComparisonOperator op, NumericCondition c2)
 {
     this.condition1 = c1;
     this.condition2 = c2;
     this.op = op;
 }