internal Operand(SearchConditionNodeType nodeType, IOperator sourceOperator)
 {
     NodeType = nodeType;
     Source   = sourceOperator;
 }
Beispiel #2
0
 internal Operator(SearchConditionNodeType nodeType, IOperand sourceOperand)
 {
     NodeType = nodeType;
     Source   = sourceOperand;
 }