Esempio n. 1
0
 public SortParserResultExpression(string name, SortParserResultOperator @operator) : this(name)
 {
     this.Operator = @operator;
 }
Esempio n. 2
0
 public SortParserResultExpression(string name, SortParserResultOperator @operator, ISortParserResultExpression child) : this(name, @operator)
 {
     this.Child = child;
 }
Esempio n. 3
0
 public SortParserResultExpression(SortParserResultOperator @operator)
 {
     this.Operator = @operator;
 }