Пример #1
0
 public virtual void RemoveClassesOfService(ClassOfService __item)
 {
     if (__item != null && classesOfService != null && classesOfService.Contains(__item))
     {
         classesOfService.Remove(__item);
     }
 }
Пример #2
0
 public virtual void AddClassesOfService(ClassOfService __item)
 {
     if (__item != null && classesOfService != null && !classesOfService.Contains(__item))
     {
         classesOfService.Add(__item);
     }
 }
Пример #3
0
 public virtual void SetClassesOfServiceAt(ClassOfService __item, int __index)
 {
     if (__item == null)
     {
         classesOfService[__index] = null;
     }
     else
     {
         classesOfService[__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(ClassOfService compareTo)
        {
            return(!this.IsTransient() && !compareTo.IsTransient() && this.Id.Equals(compareTo.Id));
        }
Пример #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 [ClassOfService] instance to use as the destination.</param>
/// <returns>A copy of the object</returns>
        public virtual ClassOfService Copy(bool deep = false, Hashtable copiedObjects = null, bool asNew = false, bool reuseNestedObjects = false, ClassOfService copy = null)
        {
            if (copiedObjects == null)
            {
                copiedObjects = new Hashtable();
            }
            if (copy == null && copiedObjects.Contains(this))
            {
                return((ClassOfService)copiedObjects[this]);
            }
            copy = copy ?? new ClassOfService();
            if (!asNew)
            {
                copy.TransientId = this.TransientId;
                copy.Id          = this.Id;
            }
            copy.Code        = this.Code;
            copy.Description = this.Description;
            if (!copiedObjects.Contains(this))
            {
                copiedObjects.Add(this, copy);
            }
            copy.meals = new List <Meal>();
            if (deep && this.meals != null)
            {
                foreach (var __item in this.meals)
                {
                    if (!copiedObjects.Contains(__item))
                    {
                        if (asNew && reuseNestedObjects)
                        {
                            copy.AddMeals(__item);
                        }
                        else
                        {
                            copy.AddMeals(__item.Copy(deep, copiedObjects, asNew));
                        }
                    }
                    else
                    {
                        copy.AddMeals((Meal)copiedObjects[__item]);
                    }
                }
            }
            return(copy);
        }