示例#1
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(ShoppingResponse compareTo)
        {
            return(!this.IsTransient() && !compareTo.IsTransient() && this.Id.Equals(compareTo.Id));
        }
示例#2
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 [ShoppingResponse] instance to use as the destination.</param>
/// <returns>A copy of the object</returns>
        public virtual ShoppingResponse Copy(bool deep = false, Hashtable copiedObjects = null, bool asNew = false, bool reuseNestedObjects = false, ShoppingResponse copy = null)
        {
            if (copiedObjects == null)
            {
                copiedObjects = new Hashtable();
            }
            if (copy == null && copiedObjects.Contains(this))
            {
                return((ShoppingResponse)copiedObjects[this]);
            }
            copy = copy ?? new ShoppingResponse();
            if (!asNew)
            {
                copy.TransientId = this.TransientId;
                copy.Id          = this.Id;
            }
            copy.Key = this.Key;
            if (!copiedObjects.Contains(this))
            {
                copiedObjects.Add(this, copy);
            }
            if (deep && this.shoppingQuery != null)
            {
                if (!copiedObjects.Contains(this.shoppingQuery))
                {
                    if (asNew && reuseNestedObjects)
                    {
                        copy.ShoppingQuery = this.ShoppingQuery;
                    }
                    else if (asNew)
                    {
                        copy.ShoppingQuery = this.ShoppingQuery.Copy(deep, copiedObjects, true);
                    }
                    else
                    {
                        copy.shoppingQuery = this.shoppingQuery.Copy(deep, copiedObjects, false);
                    }
                }
                else
                {
                    if (asNew)
                    {
                        copy.ShoppingQuery = (ShoppingQuery)copiedObjects[this.ShoppingQuery];
                    }
                    else
                    {
                        copy.shoppingQuery = (ShoppingQuery)copiedObjects[this.ShoppingQuery];
                    }
                }
            }
            if (deep && this.currency != null)
            {
                if (!copiedObjects.Contains(this.currency))
                {
                    if (asNew && reuseNestedObjects)
                    {
                        copy.Currency = this.Currency;
                    }
                    else if (asNew)
                    {
                        copy.Currency = this.Currency.Copy(deep, copiedObjects, true);
                    }
                    else
                    {
                        copy.currency = this.currency.Copy(deep, copiedObjects, false);
                    }
                }
                else
                {
                    if (asNew)
                    {
                        copy.Currency = (Currency)copiedObjects[this.Currency];
                    }
                    else
                    {
                        copy.currency = (Currency)copiedObjects[this.Currency];
                    }
                }
            }
            if (deep && this.trip != null)
            {
                if (!copiedObjects.Contains(this.trip))
                {
                    if (asNew && reuseNestedObjects)
                    {
                        copy.Trip = this.Trip;
                    }
                    else if (asNew)
                    {
                        copy.Trip = this.Trip.Copy(deep, copiedObjects, true);
                    }
                    else
                    {
                        copy.trip = this.trip.Copy(deep, copiedObjects, false);
                    }
                }
                else
                {
                    if (asNew)
                    {
                        copy.Trip = (Trip)copiedObjects[this.Trip];
                    }
                    else
                    {
                        copy.trip = (Trip)copiedObjects[this.Trip];
                    }
                }
            }
            return(copy);
        }