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

            return
                ((
                     Name == other.Name ||
                     Name != null &&
                     Name.Equals(other.Name)
                     ) &&
                 (
                     UrlComplementaryList == other.UrlComplementaryList ||
                     UrlComplementaryList != null &&
                     UrlComplementaryList.Equals(other.UrlComplementaryList)
                 ) &&
                 (
                     PhoneChannels == other.PhoneChannels ||
                     PhoneChannels != null &&
                     PhoneChannels.SequenceEqual(other.PhoneChannels)
                 ));
        }
Exemple #2
0
        /// <summary>
        /// Returns true if BusinessLoanCompany instances are equal
        /// </summary>
        /// <param name="other">Instance of BusinessLoanCompany to be compared</param>
        /// <returns>Boolean</returns>
        public bool Equals(BusinessLoanCompany other)
        {
            if (ReferenceEquals(null, other))
            {
                return(false);
            }
            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return
                ((
                     Name == other.Name ||
                     Name != null &&
                     Name.Equals(other.Name)
                     ) &&
                 (
                     UrlComplementaryList == other.UrlComplementaryList ||
                     UrlComplementaryList != null &&
                     UrlComplementaryList.Equals(other.UrlComplementaryList)
                 ) &&
                 (
                     BusinessLoans == other.BusinessLoans ||
                     BusinessLoans != null &&
                     BusinessLoans.SequenceEqual(other.BusinessLoans)
                 ));
        }
Exemple #3
0
 /// <summary>
 /// Gets the hash code
 /// </summary>
 /// <returns>Hash code</returns>
 public override int GetHashCode()
 {
     unchecked // Overflow is fine, just wrap
     {
         var hashCode = 41;
         // Suitable nullity checks etc, of course :)
         if (Name != null)
         {
             hashCode = hashCode * 59 + Name.GetHashCode();
         }
         if (CnpjNumber != null)
         {
             hashCode = hashCode * 59 + CnpjNumber.GetHashCode();
         }
         if (UrlComplementaryList != null)
         {
             hashCode = hashCode * 59 + UrlComplementaryList.GetHashCode();
         }
         if (Branches != null)
         {
             hashCode = hashCode * 59 + Branches.GetHashCode();
         }
         return(hashCode);
     }
 }
Exemple #4
0
        /// <summary>
        /// Returns true if BranchesCompany instances are equal
        /// </summary>
        /// <param name="other">Instance of BranchesCompany to be compared</param>
        /// <returns>Boolean</returns>
        public bool Equals(BranchesCompany other)
        {
            if (ReferenceEquals(null, other))
            {
                return(false);
            }
            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return
                ((
                     Name == other.Name ||
                     Name != null &&
                     Name.Equals(other.Name)
                     ) &&
                 (
                     CnpjNumber == other.CnpjNumber ||
                     CnpjNumber != null &&
                     CnpjNumber.Equals(other.CnpjNumber)
                 ) &&
                 (
                     UrlComplementaryList == other.UrlComplementaryList ||
                     UrlComplementaryList != null &&
                     UrlComplementaryList.Equals(other.UrlComplementaryList)
                 ) &&
                 (
                     Branches == other.Branches ||
                     Branches != null &&
                     Branches.SequenceEqual(other.Branches)
                 ));
        }
        /// <summary>
        /// Returns true if SharedAutomatedTellerMachinesCompany instances are equal
        /// </summary>
        /// <param name="other">Instance of SharedAutomatedTellerMachinesCompany to be compared</param>
        /// <returns>Boolean</returns>
        public bool Equals(SharedAutomatedTellerMachinesCompany other)
        {
            if (ReferenceEquals(null, other))
            {
                return(false);
            }
            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return
                ((
                     Name == other.Name ||
                     Name != null &&
                     Name.Equals(other.Name)
                     ) &&
                 (
                     UrlComplementaryList == other.UrlComplementaryList ||
                     UrlComplementaryList != null &&
                     UrlComplementaryList.Equals(other.UrlComplementaryList)
                 ) &&
                 (
                     CnpjNumber == other.CnpjNumber ||
                     CnpjNumber != null &&
                     CnpjNumber.Equals(other.CnpjNumber)
                 ));
        }
 /// <summary>
 /// Gets the hash code
 /// </summary>
 /// <returns>Hash code</returns>
 public override int GetHashCode()
 {
     unchecked // Overflow is fine, just wrap
     {
         var hashCode = 41;
         // Suitable nullity checks etc, of course :)
         if (Name != null)
         {
             hashCode = hashCode * 59 + Name.GetHashCode();
         }
         if (UrlComplementaryList != null)
         {
             hashCode = hashCode * 59 + UrlComplementaryList.GetHashCode();
         }
         if (ElectronicChannels != null)
         {
             hashCode = hashCode * 59 + ElectronicChannels.GetHashCode();
         }
         return(hashCode);
     }
 }