///<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="QuarterlyOrdersBase"/> and has the same value as this instance; otherwise, false.</returns>
 public virtual bool Equals(QuarterlyOrdersBase toObject)
 {
     if (toObject == null)
         return false;
     return Equals(this, toObject);
 }
        ///<summary>
        /// Determines whether the specified <see cref="QuarterlyOrdersBase"/> instances are considered equal.
        ///</summary>
        ///<param name="Object1">The first <see cref="QuarterlyOrdersBase"/> to compare.</param>
        ///<param name="Object2">The second <see cref="QuarterlyOrdersBase"/> 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(QuarterlyOrdersBase Object1, QuarterlyOrdersBase 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.CustomerId != null && Object2.CustomerId != null )
            {
                if (Object1.CustomerId != Object2.CustomerId)
                    equal = false;
            }
            else if (Object1.CustomerId == null ^ Object1.CustomerId == null )
            {
                equal = false;
            }
            if (Object1.CompanyName != null && Object2.CompanyName != null )
            {
                if (Object1.CompanyName != Object2.CompanyName)
                    equal = false;
            }
            else if (Object1.CompanyName == null ^ Object1.CompanyName == null )
            {
                equal = false;
            }
            if (Object1.City != null && Object2.City != null )
            {
                if (Object1.City != Object2.City)
                    equal = false;
            }
            else if (Object1.City == null ^ Object1.City == null )
            {
                equal = false;
            }
            if (Object1.Country != null && Object2.Country != null )
            {
                if (Object1.Country != Object2.Country)
                    equal = false;
            }
            else if (Object1.Country == null ^ Object1.Country == null )
            {
                equal = false;
            }
            return equal;
        }