Ejemplo n.º 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(StatusRule compareTo)
        {
            return(!this.IsTransient() && !compareTo.IsTransient() && this.Id.Equals(compareTo.Id));
        }
Ejemplo n.º 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 [StatusRule] instance to use as the destination.</param>
/// <returns>A copy of the object</returns>
        public virtual StatusRule Copy(bool deep = false, Hashtable copiedObjects = null, bool asNew = false, bool reuseNestedObjects = false, StatusRule copy = null)
        {
            if (copiedObjects == null)
            {
                copiedObjects = new Hashtable();
            }
            if (copy == null && copiedObjects.Contains(this))
            {
                return((StatusRule)copiedObjects[this]);
            }
            copy = copy ?? new StatusRule();
            if (!asNew)
            {
                copy.TransientId = this.TransientId;
                copy.Id          = this.Id;
            }
            copy.Limit       = this.Limit;
            copy.Case        = this.Case;
            copy.Carrier     = this.Carrier;
            copy.Shipper     = this.Shipper;
            copy.MailShipper = this.MailShipper;
            copy.MailCarrier = this.MailCarrier;
            copy.CustomMail  = this.CustomMail;
            if (!copiedObjects.Contains(this))
            {
                copiedObjects.Add(this, copy);
            }
            if (deep && this.status != null)
            {
                if (!copiedObjects.Contains(this.status))
                {
                    if (asNew && reuseNestedObjects)
                    {
                        copy.Status = this.Status;
                    }
                    else if (asNew)
                    {
                        copy.Status = this.Status.Copy(deep, copiedObjects, true);
                    }
                    else
                    {
                        copy.status = this.status.Copy(deep, copiedObjects, false);
                    }
                }
                else
                {
                    if (asNew)
                    {
                        copy.Status = (Status)copiedObjects[this.Status];
                    }
                    else
                    {
                        copy.status = (Status)copiedObjects[this.Status];
                    }
                }
            }
            if (deep && this.forcedStatus != null)
            {
                if (!copiedObjects.Contains(this.forcedStatus))
                {
                    if (asNew && reuseNestedObjects)
                    {
                        copy.ForcedStatus = this.ForcedStatus;
                    }
                    else if (asNew)
                    {
                        copy.ForcedStatus = this.ForcedStatus.Copy(deep, copiedObjects, true);
                    }
                    else
                    {
                        copy.forcedStatus = this.forcedStatus.Copy(deep, copiedObjects, false);
                    }
                }
                else
                {
                    if (asNew)
                    {
                        copy.ForcedStatus = (Status)copiedObjects[this.ForcedStatus];
                    }
                    else
                    {
                        copy.forcedStatus = (Status)copiedObjects[this.ForcedStatus];
                    }
                }
            }
            return(copy);
        }