///<summary> /// Returns a value indicating whether this instance is equal to a specified object. ///</summary> ///<param name="toObject">An object to compare to this instance.</param> ///<returns>true if toObject is a <see cref="SummaryOfSalesByQuarterBase"/> and has the same value as this instance; otherwise, false.</returns> public virtual bool Equals(SummaryOfSalesByQuarterBase toObject) { if (toObject == null) return false; return Equals(this, toObject); }
///<summary> /// Determines whether the specified <see cref="SummaryOfSalesByQuarterBase"/> instances are considered equal. ///</summary> ///<param name="Object1">The first <see cref="SummaryOfSalesByQuarterBase"/> to compare.</param> ///<param name="Object2">The second <see cref="SummaryOfSalesByQuarterBase"/> 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 Equals(SummaryOfSalesByQuarterBase Object1, SummaryOfSalesByQuarterBase 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.ShippedDate != null && Object2.ShippedDate != null ) { if (Object1.ShippedDate != Object2.ShippedDate) equal = false; } else if (Object1.ShippedDate == null ^ Object1.ShippedDate == null ) { equal = false; } if (Object1.OrderId != Object2.OrderId) equal = false; if (Object1.Subtotal != null && Object2.Subtotal != null ) { if (Object1.Subtotal != Object2.Subtotal) equal = false; } else if (Object1.Subtotal == null ^ Object1.Subtotal == null ) { equal = false; } return equal; }