/// <summary> /// Returns true if self and the provided entity have the same Id values /// and the Ids are not of the default Id value /// </summary> protected bool HasSameNonDefaultIdAs(POIResponse compareTo) { return(!this.IsTransient() && !compareTo.IsTransient() && this.POIResponseKey.Equals(compareTo.POIResponseKey)); }
/// <summary> /// Copies the current object to a new instance /// </summary> /// <param name="deep">Copy members that refer to objects external to this class (not dependent)</param> /// <param name="copiedObjects">Objects that should be reused</param> /// <param name="asNew">Copy the current object as a new one, ready to be persisted, along all its members.</param> /// <param name="reuseNestedObjects">If asNew is true, this flag if set, forces the reuse of all external objects.</param> /// <param name="copy">Optional - An existing [POIResponse] instance to use as the destination.</param> /// <returns>A copy of the object</returns> public virtual POIResponse Copy(bool deep = false, Hashtable copiedObjects = null, bool asNew = false, bool reuseNestedObjects = false, POIResponse copy = null) { if (copiedObjects == null) { copiedObjects = new Hashtable(); } if (copy == null && copiedObjects.Contains(this)) { return((POIResponse)copiedObjects[this]); } copy = copy ?? new POIResponse(); if (!asNew) { copy.TransientId = this.TransientId; copy.POIResponseKey = this.POIResponseKey; } copy.Message = this.Message; copy.Likes = this.Likes; if (!copiedObjects.Contains(this)) { copiedObjects.Add(this, copy); } if (deep && this.error != null) { if (!copiedObjects.Contains(this.error)) { if (asNew && reuseNestedObjects) { copy.Error = this.Error; } else if (asNew) { copy.Error = this.Error.Copy(deep, copiedObjects, true); } else { copy.error = this.error.Copy(deep, copiedObjects, false); } } else { if (asNew) { copy.Error = (Error)copiedObjects[this.Error]; } else { copy.error = (Error)copiedObjects[this.Error]; } } } if (deep && this.pointOfInterest != null) { if (!copiedObjects.Contains(this.pointOfInterest)) { if (asNew && reuseNestedObjects) { copy.PointOfInterest = this.PointOfInterest; } else if (asNew) { copy.PointOfInterest = this.PointOfInterest.Copy(deep, copiedObjects, true); } else { copy.pointOfInterest = this.pointOfInterest.Copy(deep, copiedObjects, false); } } else { if (asNew) { copy.PointOfInterest = (PointOfInterest)copiedObjects[this.PointOfInterest]; } else { copy.pointOfInterest = (PointOfInterest)copiedObjects[this.PointOfInterest]; } } } copy.pointsOfInterest = new List <PointOfInterest>(); if (deep && this.pointsOfInterest != null) { foreach (var __item in this.pointsOfInterest) { if (!copiedObjects.Contains(__item)) { if (asNew && reuseNestedObjects) { copy.AddPointsOfInterest(__item); } else { copy.AddPointsOfInterest(__item.Copy(deep, copiedObjects, asNew)); } } else { copy.AddPointsOfInterest((PointOfInterest)copiedObjects[__item]); } } } return(copy); }