/// <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(NoteResponse compareTo) { return(!this.IsTransient() && !compareTo.IsTransient() && this.NoteResponseKey.Equals(compareTo.NoteResponseKey)); }
/// <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 [NoteResponse] instance to use as the destination.</param> /// <returns>A copy of the object</returns> public virtual NoteResponse Copy(bool deep = false, Hashtable copiedObjects = null, bool asNew = false, bool reuseNestedObjects = false, NoteResponse copy = null) { if (copiedObjects == null) { copiedObjects = new Hashtable(); } if (copy == null && copiedObjects.Contains(this)) { return((NoteResponse)copiedObjects[this]); } copy = copy ?? new NoteResponse(); if (!asNew) { copy.TransientId = this.TransientId; copy.NoteResponseKey = this.NoteResponseKey; } copy.Message = this.Message; if (!copiedObjects.Contains(this)) { copiedObjects.Add(this, copy); } if (deep && this.note != null) { if (!copiedObjects.Contains(this.note)) { if (asNew && reuseNestedObjects) { copy.Note = this.Note; } else if (asNew) { copy.Note = this.Note.Copy(deep, copiedObjects, true); } else { copy.note = this.note.Copy(deep, copiedObjects, false); } } else { if (asNew) { copy.Note = (Note)copiedObjects[this.Note]; } else { copy.note = (Note)copiedObjects[this.Note]; } } } copy.notes = new List <Note>(); if (deep && this.notes != null) { foreach (var __item in this.notes) { if (!copiedObjects.Contains(__item)) { if (asNew && reuseNestedObjects) { copy.AddNotes(__item); } else { copy.AddNotes(__item.Copy(deep, copiedObjects, asNew)); } } else { copy.AddNotes((Note)copiedObjects[__item]); } } } 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]; } } } return(copy); }