Пример #1
0
/// <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 [BookingStatus] instance to use as the destination.</param>
/// <returns>A copy of the object</returns>
        public virtual BookingStatus Copy(bool deep = false, Hashtable copiedObjects = null, bool asNew = false, bool reuseNestedObjects = false, BookingStatus copy = null)
        {
            if (copiedObjects == null)
            {
                copiedObjects = new Hashtable();
            }
            if (copy == null && copiedObjects.Contains(this))
            {
                return((BookingStatus)copiedObjects[this]);
            }
            copy = copy ?? new BookingStatus();
            if (!asNew)
            {
                copy.TransientId      = this.TransientId;
                copy.BookingStatusKey = this.BookingStatusKey;
            }
            copy.status  = this.status;
            copy.message = this.message;
            if (!copiedObjects.Contains(this))
            {
                copiedObjects.Add(this, copy);
            }
            if (deep && this.itinerarySegment != null)
            {
                if (!copiedObjects.Contains(this.itinerarySegment))
                {
                    if (asNew && reuseNestedObjects)
                    {
                        copy.ItinerarySegment = this.ItinerarySegment;
                    }
                    else if (asNew)
                    {
                        copy.ItinerarySegment = this.ItinerarySegment.Copy(deep, copiedObjects, true);
                    }
                    else
                    {
                        copy.itinerarySegment = this.itinerarySegment.Copy(deep, copiedObjects, false);
                    }
                }
                else
                {
                    if (asNew)
                    {
                        copy.ItinerarySegment = (ItinerarySegment)copiedObjects[this.ItinerarySegment];
                    }
                    else
                    {
                        copy.itinerarySegment = (ItinerarySegment)copiedObjects[this.ItinerarySegment];
                    }
                }
            }
            return(copy);
        }
Пример #2
0
/// <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(BookingStatus compareTo)
        {
            return(!this.IsTransient() && !compareTo.IsTransient() && this.BookingStatusKey.Equals(compareTo.BookingStatusKey));
        }
Пример #3
0
/// <summary>
/// Public constructors of the ItinerarySegment class
/// </summary>
/// <returns>New ItinerarySegment object</returns>
/// <remarks></remarks>
        public ItinerarySegment()
        {
            this.BookingStatus = new BookingStatus();
        }