Beispiel #1
0
        /// <summary>
        /// Returns true if LineItem instances are equal
        /// </summary>
        /// <param name="other">Instance of LineItem to be compared</param>
        /// <returns>Boolean</returns>
        public bool Equals(LineItem other)
        {
            if (ReferenceEquals(null, other))
            {
                return(false);
            }
            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return
                ((
                     AmountOfMoney == other.AmountOfMoney ||
                     AmountOfMoney != null &&
                     AmountOfMoney.Equals(other.AmountOfMoney)
                     ) &&
                 (
                     InvoiceData == other.InvoiceData ||
                     InvoiceData != null &&
                     InvoiceData.Equals(other.InvoiceData)
                 ) &&
                 (
                     Level3InterchangeInformation == other.Level3InterchangeInformation ||
                     Level3InterchangeInformation != null &&
                     Level3InterchangeInformation.Equals(other.Level3InterchangeInformation)
                 ) &&
                 (
                     OrderLineDetails == other.OrderLineDetails ||
                     OrderLineDetails != null &&
                     OrderLineDetails.Equals(other.OrderLineDetails)
                 ));
        }