コード例 #1
0
 public virtual void RemoveSolutions(SolutionWrapper __item)
 {
     if (__item != null && solutions != null && solutions.Contains(__item))
     {
         solutions.Remove(__item);
     }
 }
コード例 #2
0
 public virtual void AddSolutions(SolutionWrapper __item)
 {
     if (__item != null && solutions != null && !solutions.Contains(__item))
     {
         solutions.Add(__item);
     }
 }
コード例 #3
0
 public virtual void SetSolutionsAt(SolutionWrapper __item, int __index)
 {
     if (__item == null)
     {
         solutions[__index] = null;
     }
     else
     {
         solutions[__index] = __item;
     }
 }
コード例 #4
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(SolutionWrapper compareTo)
        {
            return(!this.IsTransient() && !compareTo.IsTransient() && this.SolutionWrapperKey.Equals(compareTo.SolutionWrapperKey));
        }
コード例 #5
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 [SolutionWrapper] instance to use as the destination.</param>
/// <returns>A copy of the object</returns>
        public virtual SolutionWrapper Copy(bool deep = false, Hashtable copiedObjects = null, bool asNew = false, bool reuseNestedObjects = false, SolutionWrapper copy = null)
        {
            if (copiedObjects == null)
            {
                copiedObjects = new Hashtable();
            }
            if (copy == null && copiedObjects.Contains(this))
            {
                return((SolutionWrapper)copiedObjects[this]);
            }
            copy = copy ?? new SolutionWrapper();
            if (!asNew)
            {
                copy.TransientId        = this.TransientId;
                copy.SolutionWrapperKey = this.SolutionWrapperKey;
            }
            copy.SolutionId    = this.SolutionId;
            copy.Currency      = this.Currency;
            copy.NetPrice      = this.NetPrice;
            copy.TotalDuration = this.TotalDuration;
            copy.Tax           = this.Tax;
            copy.DepartureDate = this.DepartureDate;
            copy.ArrivalDate   = this.ArrivalDate;
            copy.TotalCO2      = this.TotalCO2;
            if (!copiedObjects.Contains(this))
            {
                copiedObjects.Add(this, copy);
            }
            if (deep && this.transports != null)
            {
                if (!copiedObjects.Contains(this.transports))
                {
                    if (asNew && reuseNestedObjects)
                    {
                        copy.Transports = this.Transports;
                    }
                    else if (asNew)
                    {
                        copy.Transports = this.Transports.Copy(deep, copiedObjects, true);
                    }
                    else
                    {
                        copy.transports = this.transports.Copy(deep, copiedObjects, false);
                    }
                }
                else
                {
                    if (asNew)
                    {
                        copy.Transports = (Transports)copiedObjects[this.Transports];
                    }
                    else
                    {
                        copy.transports = (Transports)copiedObjects[this.Transports];
                    }
                }
            }
            return(copy);
        }