示例#1
0
 public void DeletetblCustomsOveralMonitoring(DSS4_ECompliance.BO.tblCustomsOveralMonitoring tblcustomsoveralmonitoring, bool doNotCallDeleteForThis = false, bool isCascaded = false, object calledBy = null)
 {
     if (tblcustomsoveralmonitoring == null || tblcustomsoveralmonitoring.IsTransient())
     {
         return;
     }
     tblcustomsoveralmonitoring.tblCustomsFinder = null;
     if (!doNotCallDeleteForThis)
     {
         Delete <DSS4_ECompliance.BO.tblCustomsOveralMonitoring>(tblcustomsoveralmonitoring, isCascaded);
     }
 }
示例#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(tblCustomsOveralMonitoring compareTo)
        {
            return(!this.IsTransient() && !compareTo.IsTransient() && this.MonitoringID.Equals(compareTo.MonitoringID));
        }
示例#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 [tblCustomsOveralMonitoring] instance to use as the destination.</param>
/// <returns>A copy of the object</returns>
        public virtual tblCustomsOveralMonitoring Copy(bool deep = false, Hashtable copiedObjects = null, bool asNew = false, bool reuseNestedObjects = false, tblCustomsOveralMonitoring copy = null)
        {
            if (copiedObjects == null)
            {
                copiedObjects = new Hashtable();
            }
            if (copy == null && copiedObjects.Contains(this))
            {
                return((tblCustomsOveralMonitoring)copiedObjects[this]);
            }
            copy = copy ?? new tblCustomsOveralMonitoring();
            if (!asNew)
            {
                copy.TransientId  = this.TransientId;
                copy.MonitoringID = this.MonitoringID;
            }
            copy.Waypoint                 = this.Waypoint;
            copy.DateTime                 = this.DateTime;
            copy.Location                 = this.Location;
            copy.VesselName               = this.VesselName;
            copy.ShippingAgent            = this.ShippingAgent;
            copy.TotalConsignments        = this.TotalConsignments;
            copy.DirectConsignments       = this.DirectConsignments;
            copy.TranshipmentConsignments = this.TranshipmentConsignments;
            copy.TotalEquipements         = this.TotalEquipements;
            copy.FullEquipements          = this.FullEquipements;
            copy.EmptyEquipements         = this.EmptyEquipements;
            copy.TEUSEquipements          = this.TEUSEquipements;
            copy.RiskDetection            = this.RiskDetection;
            if (!copiedObjects.Contains(this))
            {
                copiedObjects.Add(this, copy);
            }
            if (deep && this._tblCustomsFinder != null)
            {
                if (!copiedObjects.Contains(this._tblCustomsFinder))
                {
                    if (asNew && reuseNestedObjects)
                    {
                        copy.tblCustomsFinder = this.tblCustomsFinder;
                    }
                    else if (asNew)
                    {
                        copy.tblCustomsFinder = this.tblCustomsFinder.Copy(deep, copiedObjects, true);
                    }
                    else
                    {
                        copy._tblCustomsFinder = this._tblCustomsFinder.Copy(deep, copiedObjects, false);
                    }
                }
                else
                {
                    if (asNew)
                    {
                        copy.tblCustomsFinder = (tblCustomsFinder)copiedObjects[this.tblCustomsFinder];
                    }
                    else
                    {
                        copy._tblCustomsFinder = (tblCustomsFinder)copiedObjects[this.tblCustomsFinder];
                    }
                }
            }
            return(copy);
        }