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

            return
                ((
                     ProductModelID == other.ProductModelID ||
                     ProductModelID != null &&
                     ProductModelID.Equals(other.ProductModelID)
                     ) &&
                 (
                     Name == other.Name ||
                     Name != null &&
                     Name.Equals(other.Name)
                 ) &&
                 (
                     CatalogDescription == other.CatalogDescription ||
                     CatalogDescription != null &&
                     CatalogDescription.Equals(other.CatalogDescription)
                 ) &&
                 (
                     Instructions == other.Instructions ||
                     Instructions != null &&
                     Instructions.Equals(other.Instructions)
                 ));
        }
Ejemplo n.º 2
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 (ProductModelID != null)
         {
             hashCode = hashCode * 59 + ProductModelID.GetHashCode();
         }
         if (Name != null)
         {
             hashCode = hashCode * 59 + Name.GetHashCode();
         }
         if (CatalogDescription != null)
         {
             hashCode = hashCode * 59 + CatalogDescription.GetHashCode();
         }
         if (Instructions != null)
         {
             hashCode = hashCode * 59 + Instructions.GetHashCode();
         }
         return(hashCode);
     }
 }
Ejemplo n.º 3
0
 public override int GetHashCode()
 {
     unchecked
     {
         int hash = 17;
         hash = hash * 23 + (CatalogDescription == null ? 0 : CatalogDescription.GetHashCode());
         hash = hash * 23 + (Instructions == null ? 0 : Instructions.GetHashCode());
         hash = hash * 23 + (ModifiedDate == default(DateTime) ? 0 : ModifiedDate.GetHashCode());
         hash = hash * 23 + (Name == null ? 0 : Name.GetHashCode());
         hash = hash * 23 + (Rowguid == default(Guid) ? 0 : Rowguid.GetHashCode());
         return(hash);
     }
 }