/// <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 (Id != null) { hashCode = hashCode * 59 + Id.GetHashCode(); } if (Name != null) { hashCode = hashCode * 59 + Name.GetHashCode(); } if (Groupid != null) { hashCode = hashCode * 59 + Groupid.GetHashCode(); } if (Numberoforders != null) { hashCode = hashCode * 59 + Numberoforders.GetHashCode(); } if (Address != null) { hashCode = hashCode * 59 + Address.GetHashCode(); } return(hashCode); } }
/// <summary> /// Returns true if Customer instances are equal /// </summary> /// <param name="other">Instance of Customer to be compared</param> /// <returns>Boolean</returns> public bool Equals(Customer other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return (( Id == other.Id || Id != null && Id.Equals(other.Id) ) && ( Name == other.Name || Name != null && Name.Equals(other.Name) ) && ( Groupid == other.Groupid || Groupid != null && Groupid.Equals(other.Groupid) ) && ( Numberoforders == other.Numberoforders || Numberoforders != null && Numberoforders.Equals(other.Numberoforders) ) && ( Address == other.Address || Address != null && Address.Equals(other.Address) )); }