Beispiel #1
0
 public virtual void AddDiscountCards(DiscountCard __item)
 {
     if (__item != null && discountCards != null && !discountCards.Contains(__item))
     {
         discountCards.Add(__item);
         if (__item.Passenger != this)
         {
             __item.Passenger = this;
         }
     }
 }
Beispiel #2
0
 public virtual void SetDiscountCardsAt(DiscountCard __item, int __index)
 {
     if (__item == null)
     {
         discountCards[__index].Passenger = null;
     }
     else
     {
         discountCards[__index] = __item;
         if (__item.Passenger != this)
         {
             __item.Passenger = this;
         }
     }
 }
/// <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(DiscountCard 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 [DiscountCard] instance to use as the destination.</param>
/// <returns>A copy of the object</returns>
        public virtual DiscountCard Copy(bool deep = false, Hashtable copiedObjects = null, bool asNew = false, bool reuseNestedObjects = false, DiscountCard copy = null)
        {
            if (copiedObjects == null)
            {
                copiedObjects = new Hashtable();
            }
            if (copy == null && copiedObjects.Contains(this))
            {
                return((DiscountCard)copiedObjects[this]);
            }
            copy = copy ?? new DiscountCard();
            if (!asNew)
            {
                copy.TransientId = this.TransientId;
                copy.Id          = this.Id;
            }
            copy.Code        = this.Code;
            copy.Description = this.Description;
            copy.Number      = this.Number;
            if (!copiedObjects.Contains(this))
            {
                copiedObjects.Add(this, copy);
            }
            if (deep && this.passenger != null)
            {
                if (!copiedObjects.Contains(this.passenger))
                {
                    if (asNew && reuseNestedObjects)
                    {
                        copy.Passenger = this.Passenger;
                    }
                    else if (asNew)
                    {
                        copy.Passenger = this.Passenger.Copy(deep, copiedObjects, true);
                    }
                    else
                    {
                        copy.passenger = this.passenger.Copy(deep, copiedObjects, false);
                    }
                }
                else
                {
                    if (asNew)
                    {
                        copy.Passenger = (Passenger)copiedObjects[this.Passenger];
                    }
                    else
                    {
                        copy.passenger = (Passenger)copiedObjects[this.Passenger];
                    }
                }
            }
            return(copy);
        }