Beispiel #1
0
 public void DeletetblCustomsWayPointVisibility(DSS4_ECompliance.BO.tblCustomsWayPointVisibility tblcustomswaypointvisibility, bool doNotCallDeleteForThis = false, bool isCascaded = false, object calledBy = null)
 {
     if (tblcustomswaypointvisibility == null || tblcustomswaypointvisibility.IsTransient())
     {
         return;
     }
     tblcustomswaypointvisibility.tblCustomsWayPoint = null;
     if (!doNotCallDeleteForThis)
     {
         Delete <DSS4_ECompliance.BO.tblCustomsWayPointVisibility>(tblcustomswaypointvisibility, isCascaded);
     }
 }
Beispiel #2
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(tblCustomsWayPointVisibility compareTo)
        {
            return(!this.IsTransient() && !compareTo.IsTransient() && this.WayPointVisibilityID.Equals(compareTo.WayPointVisibilityID));
        }
Beispiel #3
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 [tblCustomsWayPointVisibility] instance to use as the destination.</param>
/// <returns>A copy of the object</returns>
        public virtual tblCustomsWayPointVisibility Copy(bool deep = false, Hashtable copiedObjects = null, bool asNew = false, bool reuseNestedObjects = false, tblCustomsWayPointVisibility copy = null)
        {
            if (copiedObjects == null)
            {
                copiedObjects = new Hashtable();
            }
            if (copy == null && copiedObjects.Contains(this))
            {
                return((tblCustomsWayPointVisibility)copiedObjects[this]);
            }
            copy = copy ?? new tblCustomsWayPointVisibility();
            if (!asNew)
            {
                copy.TransientId          = this.TransientId;
                copy.WayPointVisibilityID = this.WayPointVisibilityID;
            }
            copy.Waypoint                  = this.Waypoint;
            copy.From                      = this.From;
            copy.To                        = this.To;
            copy.ConveyanceId              = this.ConveyanceId;
            copy.ConveyanceRef             = this.ConveyanceRef;
            copy.ShippingAgent             = this.ShippingAgent;
            copy.TotalConsignments         = this.TotalConsignments;
            copy.DirectConsignments        = this.DirectConsignments;
            copy.TransshipmentConsignments = this.TransshipmentConsignments;
            copy.TotalCargos               = this.TotalCargos;
            copy.FullCargos                = this.FullCargos;
            copy.EmptyCargos               = this.EmptyCargos;
            copy.TotalRiskDetected         = this.TotalRiskDetected;
            copy.Consignment               = this.Consignment;
            copy.CargoId                   = this.CargoId;
            copy.RiskType                  = this.RiskType;
            copy.RiskScore                 = this.RiskScore;
            copy.Severity                  = this.Severity;
            copy.Details                   = this.Details;
            copy.Suggestions               = this.Suggestions;
            if (!copiedObjects.Contains(this))
            {
                copiedObjects.Add(this, copy);
            }
            if (deep && this._tblCustomsWayPoint != null)
            {
                if (!copiedObjects.Contains(this._tblCustomsWayPoint))
                {
                    if (asNew && reuseNestedObjects)
                    {
                        copy.tblCustomsWayPoint = this.tblCustomsWayPoint;
                    }
                    else if (asNew)
                    {
                        copy.tblCustomsWayPoint = this.tblCustomsWayPoint.Copy(deep, copiedObjects, true);
                    }
                    else
                    {
                        copy._tblCustomsWayPoint = this._tblCustomsWayPoint.Copy(deep, copiedObjects, false);
                    }
                }
                else
                {
                    if (asNew)
                    {
                        copy.tblCustomsWayPoint = (tblCustomsWayPoint)copiedObjects[this.tblCustomsWayPoint];
                    }
                    else
                    {
                        copy._tblCustomsWayPoint = (tblCustomsWayPoint)copiedObjects[this.tblCustomsWayPoint];
                    }
                }
            }
            return(copy);
        }