public virtual void RemovePersons(EuTravelDiaryPersonDTO __item) { if (__item != null && persons != null && persons.Contains(__item)) { persons.Remove(__item); } }
public virtual void AddPersons(EuTravelDiaryPersonDTO __item) { if (__item != null && persons != null && !persons.Contains(__item)) { persons.Add(__item); } }
public virtual void SetPersonsAt(EuTravelDiaryPersonDTO __item, int __index) { if (__item == null) { persons[__index] = null; } else { persons[__index] = __item; } }
/// <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(EuTravelDiaryPersonDTO compareTo) { return(!this.IsTransient() && !compareTo.IsTransient() && this.EuTravelDiaryPersonDTOKey.Equals(compareTo.EuTravelDiaryPersonDTOKey)); }
/// <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 [EuTravelDiaryPersonDTO] instance to use as the destination.</param> /// <returns>A copy of the object</returns> public virtual EuTravelDiaryPersonDTO Copy(bool deep = false, Hashtable copiedObjects = null, bool asNew = false, bool reuseNestedObjects = false, EuTravelDiaryPersonDTO copy = null) { if (copiedObjects == null) { copiedObjects = new Hashtable(); } if (copy == null && copiedObjects.Contains(this)) { return((EuTravelDiaryPersonDTO)copiedObjects[this]); } copy = copy ?? new EuTravelDiaryPersonDTO(); if (!asNew) { copy.TransientId = this.TransientId; copy.EuTravelDiaryPersonDTOKey = this.EuTravelDiaryPersonDTOKey; } copy.Username = this.Username; copy.Name = this.Name; copy.Email = this.Email; copy.PhoneNumber = this.PhoneNumber; copy.Surname = this.Surname; if (!copiedObjects.Contains(this)) { copiedObjects.Add(this, copy); } return(copy); }