示例#1
0
 public virtual void RemoveintermediateStops(intermediateStops __item)
 {
     if (__item != null && _intermediateStops != null && _intermediateStops.Contains(__item))
     {
         _intermediateStops.Remove(__item);
     }
 }
示例#2
0
 public virtual void AddintermediateStops(intermediateStops __item)
 {
     if (__item != null && _intermediateStops != null && !_intermediateStops.Contains(__item))
     {
         _intermediateStops.Add(__item);
     }
 }
示例#3
0
 public virtual void SetintermediateStopsAt(intermediateStops __item, int __index)
 {
     if (__item == null)
     {
         _intermediateStops[__index] = null;
     }
     else
     {
         _intermediateStops[__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(intermediateStops compareTo)
        {
            return(!this.IsTransient() && !compareTo.IsTransient() && this.intermediateStopsKey.Equals(compareTo.intermediateStopsKey));
        }
示例#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 [intermediateStops] instance to use as the destination.</param>
/// <returns>A copy of the object</returns>
        public virtual intermediateStops Copy(bool deep = false, Hashtable copiedObjects = null, bool asNew = false, bool reuseNestedObjects = false, intermediateStops copy = null)
        {
            if (copiedObjects == null)
            {
                copiedObjects = new Hashtable();
            }
            if (copy == null && copiedObjects.Contains(this))
            {
                return((intermediateStops)copiedObjects[this]);
            }
            copy = copy ?? new intermediateStops();
            if (!asNew)
            {
                copy.TransientId          = this.TransientId;
                copy.intermediateStopsKey = this.intermediateStopsKey;
            }
            copy.name = this.name;
            copy.lat  = this.lat;
            copy.lon  = this.lon;
            if (!copiedObjects.Contains(this))
            {
                copiedObjects.Add(this, copy);
            }
            return(copy);
        }