public ExpressionElement(RelateTypeWrapper pRelateType)
 {
     eElementType     = EElementType.RelateOperatorType;
     this.pElement    = null;
     this.pRelateType = pRelateType;
 }
 public ExpressionElement(CLASS_ELEMENT pElement)
 {
     eElementType     = EElementType.ValueType;
     this.pElement    = pElement;
     this.pRelateType = RelateTypeWrapper.Close_Parenthesis;
 }