///<summary> /// Returns a value indicating whether this instance is equal to a specified object using value semantics. ///</summary> ///<param name="toObject">An object to compare to this instance.</param> ///<returns>true if toObject is a <see cref="EvlAssessmentBase"/> and has the same value as this instance; otherwise, false.</returns> public virtual bool Equals(EvlAssessmentBase toObject) { if (toObject == null) { return(false); } return(ValueEquals(this, toObject)); }
/// <summary> /// Initializes a new instance of the EvlAssessmentKey class. /// </summary> public EvlAssessmentKey(EvlAssessmentBase entity) { this.Entity = entity; #region Init Properties if (entity != null) { this.Id = entity.Id; } #endregion }
///<summary> /// Determines whether the specified <see cref="EvlAssessmentBase"/> instances are considered equal using value semantics. ///</summary> ///<param name="Object1">The first <see cref="EvlAssessmentBase"/> to compare.</param> ///<param name="Object2">The second <see cref="EvlAssessmentBase"/> to compare. </param> ///<returns>true if Object1 is the same instance as Object2 or if both are null references or if objA.Equals(objB) returns true; otherwise, false.</returns> public static bool ValueEquals(EvlAssessmentBase Object1, EvlAssessmentBase Object2) { // both are null if (Object1 == null && Object2 == null) { return(true); } // one or the other is null, but not both if (Object1 == null ^ Object2 == null) { return(false); } bool equal = true; if (Object1.Id != Object2.Id) { equal = false; } if (Object1.Name != null && Object2.Name != null) { if (Object1.Name != Object2.Name) { equal = false; } } else if (Object1.Name == null ^ Object2.Name == null) { equal = false; } if (Object1.Usertype != null && Object2.Usertype != null) { if (Object1.Usertype != Object2.Usertype) { equal = false; } } else if (Object1.Usertype == null ^ Object2.Usertype == null) { equal = false; } if (Object1.Weight != null && Object2.Weight != null) { if (Object1.Weight != Object2.Weight) { equal = false; } } else if (Object1.Weight == null ^ Object2.Weight == null) { equal = false; } if (Object1.ModelId != null && Object2.ModelId != null) { if (Object1.ModelId != Object2.ModelId) { equal = false; } } else if (Object1.ModelId == null ^ Object2.ModelId == null) { equal = false; } return(equal); }