public SortParserResultExpression(string name, SortParserResultOperator @operator) : this(name) { this.Operator = @operator; }
public SortParserResultExpression(string name, SortParserResultOperator @operator, ISortParserResultExpression child) : this(name, @operator) { this.Child = child; }
public SortParserResultExpression(SortParserResultOperator @operator) { this.Operator = @operator; }