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

            return
                ((
                     LodgementDate == other.LodgementDate ||
                     LodgementDate != null &&
                     LodgementDate.Equals(other.LodgementDate)
                     ) &&
                 (
                     MaturityDate == other.MaturityDate ||
                     MaturityDate != null &&
                     MaturityDate.Equals(other.MaturityDate)
                 ) &&
                 (
                     MaturityAmount == other.MaturityAmount ||
                     MaturityAmount != null &&
                     MaturityAmount.Equals(other.MaturityAmount)
                 ) &&
                 (
                     MaturityCurrency == other.MaturityCurrency ||
                     MaturityCurrency != null &&
                     MaturityCurrency.Equals(other.MaturityCurrency)
                 ) &&
                 (
                     MaturityInstructions == other.MaturityInstructions ||
                     MaturityInstructions != null &&
                     MaturityInstructions.Equals(other.MaturityInstructions)
                 ));
        }