Example #1
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);
     }
 }
 /// <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);
     }
 }