public void VolumeComposition_persistence_test()
        {
            DateTime now = DateTime.Now;

            // Get datetime without milliseconds
            now = new DateTime(now.Ticks - (now.Ticks % TimeSpan.TicksPerSecond), now.Kind);
            var _volumebo_volumecomponent_volumecomposition = new DSS3_LogisticsPoolingForUrbanDistribution.BO.VolumeComponent
            {
                Name           = "VolumeComponent_Name",
                StandardVolume = 222222.22M,
            };

            new PersistenceSpecification <DSS3_LogisticsPoolingForUrbanDistribution.BO.VolumeComposition>(Session)
            .CheckProperty(p => p.Units, 4945)
            .CheckReference(p => p.VolumeComponent, _volumebo_volumecomponent_volumecomposition)
            .VerifyTheMappings();
        }
Example #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(VolumeComponent compareTo)
        {
            return(!this.IsTransient() && !compareTo.IsTransient() && this.Id.Equals(compareTo.Id));
        }
Example #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 [VolumeComponent] instance to use as the destination.</param>
/// <returns>A copy of the object</returns>
        public virtual VolumeComponent Copy(bool deep = false, Hashtable copiedObjects = null, bool asNew = false, bool reuseNestedObjects = false, VolumeComponent copy = null)
        {
            if (copiedObjects == null)
            {
                copiedObjects = new Hashtable();
            }
            if (copy == null && copiedObjects.Contains(this))
            {
                return((VolumeComponent)copiedObjects[this]);
            }
            copy = copy ?? new VolumeComponent();
            if (!asNew)
            {
                copy.TransientId = this.TransientId;
                copy.Id          = this.Id;
            }
            copy.Name           = this.Name;
            copy.StandardVolume = this.StandardVolume;
            if (!copiedObjects.Contains(this))
            {
                copiedObjects.Add(this, copy);
            }
            return(copy);
        }