public virtual void RemoveLegs(LegConfirmation __item)
 {
     if (__item != null && legs != null && legs.Contains(__item))
     {
         legs.Remove(__item);
         __item.BookingConfirmation = null;
     }
 }
 public virtual void AddLegs(LegConfirmation __item)
 {
     if (__item != null && legs != null && !legs.Contains(__item))
     {
         legs.Add(__item);
         if (__item.BookingConfirmation != this)
         {
             __item.BookingConfirmation = this;
         }
     }
 }
 public virtual void SetLegsAt(LegConfirmation __item, int __index)
 {
     if (__item == null)
     {
         legs[__index].BookingConfirmation = null;
     }
     else
     {
         legs[__index] = __item;
         if (__item.BookingConfirmation != this)
         {
             __item.BookingConfirmation = this;
         }
     }
 }
Exemple #4
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(LegConfirmation compareTo)
        {
            return(!this.IsTransient() && !compareTo.IsTransient() && this.LegConfirmationKey.Equals(compareTo.LegConfirmationKey));
        }
Exemple #5
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 [LegConfirmation] instance to use as the destination.</param>
/// <returns>A copy of the object</returns>
        public virtual LegConfirmation Copy(bool deep = false, Hashtable copiedObjects = null, bool asNew = false, bool reuseNestedObjects = false, LegConfirmation copy = null)
        {
            if (copiedObjects == null)
            {
                copiedObjects = new Hashtable();
            }
            if (copy == null && copiedObjects.Contains(this))
            {
                return((LegConfirmation)copiedObjects[this]);
            }
            copy = copy ?? new LegConfirmation();
            if (!asNew)
            {
                copy.TransientId        = this.TransientId;
                copy.LegConfirmationKey = this.LegConfirmationKey;
            }
            copy.Success = this.Success;
            copy.Message = this.Message;
            copy.LegID   = this.LegID;
            if (!copiedObjects.Contains(this))
            {
                copiedObjects.Add(this, copy);
            }
            if (deep && this.bookingConfirmation != null)
            {
                if (!copiedObjects.Contains(this.bookingConfirmation))
                {
                    if (asNew && reuseNestedObjects)
                    {
                        copy.BookingConfirmation = this.BookingConfirmation;
                    }
                    else if (asNew)
                    {
                        copy.BookingConfirmation = this.BookingConfirmation.Copy(deep, copiedObjects, true);
                    }
                    else
                    {
                        copy.bookingConfirmation = this.bookingConfirmation.Copy(deep, copiedObjects, false);
                    }
                }
                else
                {
                    if (asNew)
                    {
                        copy.BookingConfirmation = (BookingConfirmation)copiedObjects[this.BookingConfirmation];
                    }
                    else
                    {
                        copy.bookingConfirmation = (BookingConfirmation)copiedObjects[this.BookingConfirmation];
                    }
                }
            }
            return(copy);
        }