/// <summary> /// Returns true if PublicFeedback instances are equal /// </summary> /// <param name="other">Instance of PublicFeedback to be compared</param> /// <returns>Boolean</returns> public bool Equals(PublicFeedback other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return (( Phoneid == other.Phoneid || Phoneid != null && Phoneid.Equals(other.Phoneid) ) && ( FeedbackType == other.FeedbackType || FeedbackType != null && FeedbackType.Equals(other.FeedbackType) ) && ( FeedbackValue == other.FeedbackValue || FeedbackValue != null && FeedbackValue.Equals(other.FeedbackValue) )); }
/// <summary> /// Returns true if PublicFeedbackResult instances are equal /// </summary> /// <param name="other">Instance of PublicFeedbackResult to be compared</param> /// <returns>Boolean</returns> public bool Equals(PublicFeedbackResult other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return (( Count == other.Count || Count != null && Count.Equals(other.Count) ) && ( FeedbackType == other.FeedbackType || FeedbackType != null && FeedbackType.Equals(other.FeedbackType) ) && ( FeedbackMeanvalue == other.FeedbackMeanvalue || FeedbackMeanvalue != null && FeedbackMeanvalue.Equals(other.FeedbackMeanvalue) )); }
/// <summary> /// Returns true if ProAcousticFeedback instances are equal /// </summary> /// <param name="other">Instance of ProAcousticFeedback to be compared</param> /// <returns>Boolean</returns> public bool Equals(ProAcousticFeedback other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return (( Phoneid == other.Phoneid || Phoneid != null && Phoneid.Equals(other.Phoneid) ) && ( FeedbackType == other.FeedbackType || FeedbackType != null && FeedbackType.Equals(other.FeedbackType) ) && ( FeedbackValue == other.FeedbackValue || FeedbackValue != null && FeedbackValue.Equals(other.FeedbackValue) ) && ( FeedbackMessage == other.FeedbackMessage || FeedbackMessage != null && FeedbackMessage.Equals(other.FeedbackMessage) ) && ( FeedbackLat == other.FeedbackLat || FeedbackLat != null && FeedbackLat.Equals(other.FeedbackLat) ) && ( FeedbackLon == other.FeedbackLon || FeedbackLon != null && FeedbackLon.Equals(other.FeedbackLon) )); }