/// <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(tblZslTransportDetail compareTo) { return(!this.IsTransient() && !compareTo.IsTransient() && this.TransportDetailsID.Equals(compareTo.TransportDetailsID)); }
/// <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 [tblZslTransportDetail] instance to use as the destination.</param> /// <returns>A copy of the object</returns> public virtual tblZslTransportDetail Copy(bool deep = false, Hashtable copiedObjects = null, bool asNew = false, bool reuseNestedObjects = false, tblZslTransportDetail copy = null) { if (copiedObjects == null) { copiedObjects = new Hashtable(); } if (copy == null && copiedObjects.Contains(this)) { return((tblZslTransportDetail)copiedObjects[this]); } copy = copy ?? new tblZslTransportDetail(); if (!asNew) { copy.TransientId = this.TransientId; copy.TransportDetailsID = this.TransportDetailsID; } copy.EventID = this.EventID; copy.Qty = this.Qty; copy.ExtDateStart = this.ExtDateStart; copy.ExtTimeStart = this.ExtTimeStart; copy.ExtTimeAction = this.ExtTimeAction; copy.RealDateStart = this.RealDateStart; copy.RealTimeStart = this.RealTimeStart; copy.RealTimeAction = this.RealTimeAction; if (!copiedObjects.Contains(this)) { copiedObjects.Add(this, copy); } if (deep && this._tblZslPlatformBookingOrder != null) { if (!copiedObjects.Contains(this._tblZslPlatformBookingOrder)) { if (asNew && reuseNestedObjects) { copy.tblZslPlatformBookingOrder = this.tblZslPlatformBookingOrder; } else if (asNew) { copy.tblZslPlatformBookingOrder = this.tblZslPlatformBookingOrder.Copy(deep, copiedObjects, true); } else { copy._tblZslPlatformBookingOrder = this._tblZslPlatformBookingOrder.Copy(deep, copiedObjects, false); } } else { if (asNew) { copy.tblZslPlatformBookingOrder = (tblZslPlatformBookingOrder)copiedObjects[this.tblZslPlatformBookingOrder]; } else { copy._tblZslPlatformBookingOrder = (tblZslPlatformBookingOrder)copiedObjects[this.tblZslPlatformBookingOrder]; } } } 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); }