Пример #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(tblZslTransportEvent compareTo)
        {
            return(!this.IsTransient() && !compareTo.IsTransient() && this.EventID.Equals(compareTo.EventID));
        }
Пример #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 [tblZslTransportEvent] instance to use as the destination.</param>
/// <returns>A copy of the object</returns>
        public virtual tblZslTransportEvent Copy(bool deep = false, Hashtable copiedObjects = null, bool asNew = false, bool reuseNestedObjects = false, tblZslTransportEvent copy = null)
        {
            if (copiedObjects == null)
            {
                copiedObjects = new Hashtable();
            }
            if (copy == null && copiedObjects.Contains(this))
            {
                return((tblZslTransportEvent)copiedObjects[this]);
            }
            copy = copy ?? new tblZslTransportEvent();
            if (!asNew)
            {
                copy.TransientId = this.TransientId;
                copy.EventID     = this.EventID;
            }
            copy.EventDesc = this.EventDesc;
            copy.EventTime = this.EventTime;
            if (!copiedObjects.Contains(this))
            {
                copiedObjects.Add(this, copy);
            }
            if (deep && this._tblZslCustomer != null)
            {
                if (!copiedObjects.Contains(this._tblZslCustomer))
                {
                    if (asNew && reuseNestedObjects)
                    {
                        copy.tblZslCustomer = this.tblZslCustomer;
                    }
                    else if (asNew)
                    {
                        copy.tblZslCustomer = this.tblZslCustomer.Copy(deep, copiedObjects, true);
                    }
                    else
                    {
                        copy._tblZslCustomer = this._tblZslCustomer.Copy(deep, copiedObjects, false);
                    }
                }
                else
                {
                    if (asNew)
                    {
                        copy.tblZslCustomer = (tblZslCustomer)copiedObjects[this.tblZslCustomer];
                    }
                    else
                    {
                        copy._tblZslCustomer = (tblZslCustomer)copiedObjects[this.tblZslCustomer];
                    }
                }
            }
            if (deep && this._tblZslWorker != null)
            {
                if (!copiedObjects.Contains(this._tblZslWorker))
                {
                    if (asNew && reuseNestedObjects)
                    {
                        copy.tblZslWorker = this.tblZslWorker;
                    }
                    else if (asNew)
                    {
                        copy.tblZslWorker = this.tblZslWorker.Copy(deep, copiedObjects, true);
                    }
                    else
                    {
                        copy._tblZslWorker = this._tblZslWorker.Copy(deep, copiedObjects, false);
                    }
                }
                else
                {
                    if (asNew)
                    {
                        copy.tblZslWorker = (tblZslWorker)copiedObjects[this.tblZslWorker];
                    }
                    else
                    {
                        copy._tblZslWorker = (tblZslWorker)copiedObjects[this.tblZslWorker];
                    }
                }
            }
            return(copy);
        }