///<summary> /// Returns a value indicating whether this instance is equal to a specified object using value semantics. ///</summary> ///<param name="toObject">An object to compare to this instance.</param> ///<returns>true if toObject is a <see cref="TransValueBase"/> and has the same value as this instance; otherwise, false.</returns> public virtual bool Equals(TransValueBase toObject) { if (toObject == null) { return(false); } return(ValueEquals(this, toObject)); }
///<summary> /// Determines whether the specified <see cref="TransValueBase"/> instances are considered equal using value semantics. ///</summary> ///<param name="Object1">The first <see cref="TransValueBase"/> to compare.</param> ///<param name="Object2">The second <see cref="TransValueBase"/> to compare. </param> ///<returns>true if Object1 is the same instance as Object2 or if both are null references or if objA.Equals(objB) returns true; otherwise, false.</returns> public static bool ValueEquals(TransValueBase Object1, TransValueBase Object2) { // both are null if (Object1 == null && Object2 == null) { return(true); } // one or the other is null, but not both if (Object1 == null ^ Object2 == null) { return(false); } bool equal = true; if (Object1.TransNum != Object2.TransNum) { equal = false; } if (Object1.Amount != null && Object2.Amount != null) { if (Object1.Amount != Object2.Amount) { equal = false; } } else if (Object1.Amount == null ^ Object2.Amount == null) { equal = false; } if (Object1.Frcustomer != null && Object2.Frcustomer != null) { if (Object1.Frcustomer != Object2.Frcustomer) { equal = false; } } else if (Object1.Frcustomer == null ^ Object2.Frcustomer == null) { equal = false; } if (Object1.Forex != null && Object2.Forex != null) { if (Object1.Forex != Object2.Forex) { equal = false; } } else if (Object1.Forex == null ^ Object2.Forex == null) { equal = false; } return(equal); }
/// <summary> /// Initializes a new instance of the TransValueKey class. /// </summary> public TransValueKey(TransValueBase entity) { this.Entity = entity; #region Init Properties if (entity != null) { this.TransNum = entity.TransNum; } #endregion }