/// <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(ItinerarySegment compareTo) { return(!this.IsTransient() && !compareTo.IsTransient() && this.Id.Equals(compareTo.Id)); }
/// <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 [ItinerarySegment] instance to use as the destination.</param> /// <returns>A copy of the object</returns> public virtual ItinerarySegment Copy(bool deep = false, Hashtable copiedObjects = null, bool asNew = false, bool reuseNestedObjects = false, ItinerarySegment copy = null) { if (copiedObjects == null) { copiedObjects = new Hashtable(); } if (copy == null && copiedObjects.Contains(this)) { return((ItinerarySegment)copiedObjects[this]); } copy = copy ?? new ItinerarySegment(); if (!asNew) { copy.TransientId = this.TransientId; copy.Id = this.Id; } copy.DateBooked = this.DateBooked; copy.DateCancelled = this.DateCancelled; copy.Status = this.Status; copy.TermsAndConditions = this.TermsAndConditions; copy.ItinerarySequenceNumber = this.ItinerarySequenceNumber; copy.ExternalIdentifier = this.ExternalIdentifier; copy.UpdatedAt = this.UpdatedAt; copy.DepartureDateTime = this.DepartureDateTime; copy.ArrivalDateTime = this.ArrivalDateTime; copy.TravelTime = this.TravelTime; if (!copiedObjects.Contains(this)) { copiedObjects.Add(this, copy); } if (deep && this.fare != null) { if (!copiedObjects.Contains(this.fare)) { if (asNew && reuseNestedObjects) { copy.Fare = this.Fare; } else if (asNew) { copy.Fare = this.Fare.Copy(deep, copiedObjects, true); } else { copy.fare = this.fare.Copy(deep, copiedObjects, false); } } else { if (asNew) { copy.Fare = (Fare)copiedObjects[this.Fare]; } else { copy.fare = (Fare)copiedObjects[this.Fare]; } } } copy.availableFares = new List <Fare>(); if (deep && this.availableFares != null) { foreach (var __item in this.availableFares) { if (!copiedObjects.Contains(__item)) { if (asNew && reuseNestedObjects) { copy.AddAvailableFares(__item); } else { copy.AddAvailableFares(__item.Copy(deep, copiedObjects, asNew)); } } else { copy.AddAvailableFares((Fare)copiedObjects[__item]); } } } if (deep && this.bookingStatus != null) { if (!copiedObjects.Contains(this.bookingStatus)) { if (asNew && reuseNestedObjects) { copy.BookingStatus = this.BookingStatus; } else if (asNew) { copy.BookingStatus = this.BookingStatus.Copy(deep, copiedObjects, true); } else { copy.bookingStatus = this.bookingStatus.Copy(deep, copiedObjects, false); } } else { if (asNew) { copy.BookingStatus = (BookingStatus)copiedObjects[this.BookingStatus]; } else { copy.bookingStatus = (BookingStatus)copiedObjects[this.BookingStatus]; } } } return(copy); }