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

            return
                ((
                     Country == other.Country ||
                     Country != null &&
                     Country.Equals(other.Country)
                     ) &&
                 (
                     AccountNumber == other.AccountNumber ||
                     AccountNumber != null &&
                     AccountNumber.Equals(other.AccountNumber)
                 ) &&
                 (
                     BankAddress == other.BankAddress ||
                     BankAddress != null &&
                     BankAddress.Equals(other.BankAddress)
                 ) &&
                 (
                     BeneficiaryBankBIC == other.BeneficiaryBankBIC ||
                     BeneficiaryBankBIC != null &&
                     BeneficiaryBankBIC.Equals(other.BeneficiaryBankBIC)
                 ) &&
                 (
                     FedWireNumber == other.FedWireNumber ||
                     FedWireNumber != null &&
                     FedWireNumber.Equals(other.FedWireNumber)
                 ) &&
                 (
                     SortCode == other.SortCode ||
                     SortCode != null &&
                     SortCode.Equals(other.SortCode)
                 ) &&
                 (
                     ChipNumber == other.ChipNumber ||
                     ChipNumber != null &&
                     ChipNumber.Equals(other.ChipNumber)
                 ) &&
                 (
                     RoutingNumber == other.RoutingNumber ||
                     RoutingNumber != null &&
                     RoutingNumber.Equals(other.RoutingNumber)
                 ) &&
                 (
                     LegalEntityIdentifier == other.LegalEntityIdentifier ||
                     LegalEntityIdentifier != null &&
                     LegalEntityIdentifier.Equals(other.LegalEntityIdentifier)
                 ));
        }
コード例 #2
0
        public override bool Equals(object obj)
        {
            var bankAccount = obj as BankAccount;

            if (bankAccount == null)
            {
                return(false);
            }

            return(Number.Equals(bankAccount.Number) &&
                   SortCode.Equals(bankAccount.SortCode));
        }
コード例 #3
0
        /// <summary>
        ///     Returns true if AccountDetailsViewModel instances are equal
        /// </summary>
        /// <param name="other">Instance of AccountDetailsViewModel to be compared</param>
        /// <returns>Boolean</returns>
        public bool Equals(AccountDetailsViewModel other)
        {
            if (ReferenceEquals(null, other))
            {
                return(false);
            }
            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return
                ((
                     AccountId == other.AccountId ||
                     AccountId != null &&
                     AccountId.Equals(other.AccountId)
                     ) &&
                 (
                     BankId == other.BankId ||
                     BankId != null &&
                     BankId.Equals(other.BankId)
                 ) &&
                 (
                     AccountNumber == other.AccountNumber ||
                     AccountNumber != null &&
                     AccountNumber.Equals(other.AccountNumber)
                 ) &&
                 (
                     SortCode == other.SortCode ||
                     SortCode != null &&
                     SortCode.Equals(other.SortCode)
                 ) &&
                 (
                     AccountName == other.AccountName ||
                     AccountName != null &&
                     AccountName.Equals(other.AccountName)
                 ) &&
                 (
                     CurrentBalance == other.CurrentBalance ||
                     CurrentBalance != null &&
                     CurrentBalance.Equals(other.CurrentBalance)
                 ) &&
                 (
                     OverdraftLimit == other.OverdraftLimit ||
                     OverdraftLimit != null &&
                     OverdraftLimit.Equals(other.OverdraftLimit)
                 ));
        }
コード例 #4
0
        /// <summary>
        ///     Returns true if AccountViewModel instances are equal
        /// </summary>
        /// <param name="input">Instance of AccountViewModel to be compared</param>
        /// <returns>Boolean</returns>
        public bool Equals(AccountViewModel input)
        {
            if (input == null)
            {
                return(false);
            }

            return
                ((
                     AccountName == input.AccountName ||
                     AccountName != null &&
                     AccountName.Equals(input.AccountName)
                     ) &&
                 (
                     AccountNumber == input.AccountNumber ||
                     AccountNumber != null &&
                     AccountNumber.Equals(input.AccountNumber)
                 ) &&
                 (
                     SortCode == input.SortCode ||
                     SortCode != null &&
                     SortCode.Equals(input.SortCode)
                 ) &&
                 (
                     Balance == input.Balance ||
                     Balance != null &&
                     Balance.Equals(input.Balance)
                 ) &&
                 (
                     AvailableBalance == input.AvailableBalance ||
                     AvailableBalance != null &&
                     AvailableBalance.Equals(input.AvailableBalance)
                 ) &&
                 (
                     Overdraft == input.Overdraft ||
                     Overdraft != null &&
                     Overdraft.Equals(input.Overdraft)
                 ));
        }
コード例 #5
0
ファイル: BankInfo.cs プロジェクト: LedgerLocal/LedgerLocal
        /// <summary>
        /// Returns true if BankInfo instances are equal
        /// </summary>
        /// <param name="other">Instance of BankInfo to be compared</param>
        /// <returns>Boolean</returns>
        public bool Equals(BankInfo other)
        {
            if (ReferenceEquals(null, other))
            {
                return(false);
            }
            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return
                ((
                     Nickname == other.Nickname ||
                     Nickname != null &&
                     Nickname.Equals(other.Nickname)
                     ) &&
                 (
                     CurrencyId == other.CurrencyId ||
                     CurrencyId != null &&
                     CurrencyId.Equals(other.CurrencyId)
                 ) &&
                 (
                     AccountHolder == other.AccountHolder ||
                     AccountHolder != null &&
                     AccountHolder.Equals(other.AccountHolder)
                 ) &&
                 (
                     AccountNumber == other.AccountNumber ||
                     AccountNumber != null &&
                     AccountNumber.Equals(other.AccountNumber)
                 ) &&
                 (
                     Iban == other.Iban ||
                     Iban != null &&
                     Iban.Equals(other.Iban)
                 ) &&
                 (
                     BankName == other.BankName ||
                     BankName != null &&
                     BankName.Equals(other.BankName)
                 ) &&
                 (
                     SortCode == other.SortCode ||
                     SortCode != null &&
                     SortCode.Equals(other.SortCode)
                 ) &&
                 (
                     RoutingNumber == other.RoutingNumber ||
                     RoutingNumber != null &&
                     RoutingNumber.Equals(other.RoutingNumber)
                 ) &&
                 (
                     SwiftBic == other.SwiftBic ||
                     SwiftBic != null &&
                     SwiftBic.Equals(other.SwiftBic)
                 ) &&
                 (
                     IfscCode == other.IfscCode ||
                     IfscCode != null &&
                     IfscCode.Equals(other.IfscCode)
                 ) &&
                 (
                     RoutingCode == other.RoutingCode ||
                     RoutingCode != null &&
                     RoutingCode.Equals(other.RoutingCode)
                 ) &&
                 (
                     UserAddressId == other.UserAddressId ||
                     UserAddressId != null &&
                     UserAddressId.Equals(other.UserAddressId)
                 ) &&
                 (
                     BankAddress == other.BankAddress ||
                     BankAddress != null &&
                     BankAddress.Equals(other.BankAddress)
                 ));
        }