Ejemplo n.º 1
0
 public ParameterValue Clone()
 {
     ParameterValue clone = new ParameterValue();
     clone.ObjectPath = ObjectPath;
     clone.ObjectReference = ObjectReference;
     clone.FieldPath = FieldPath;
     clone.Field = Field;
     clone.Attribute = Attribute;
     clone.Value = Value;
     clone.Lower = Lower;
     clone.Upper = Upper;
     return clone;
 }
Ejemplo n.º 2
0
 public void Add(ParameterValue parameter)
 {
     ByPath[parameter.FieldPath] = parameter;
 }
Ejemplo n.º 3
0
 public bool PersistentlyEquals(ParameterValue other)
 {
     return Value.Double == other.Value.Double;
 }