/// <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(Meal compareTo) { return(!this.IsTransient() && !compareTo.IsTransient() && this.Id.Equals(compareTo.Id)); }
/// <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 [Meal] instance to use as the destination.</param> /// <returns>A copy of the object</returns> public virtual Meal Copy(bool deep = false, Hashtable copiedObjects = null, bool asNew = false, bool reuseNestedObjects = false, Meal copy = null) { if (copiedObjects == null) { copiedObjects = new Hashtable(); } if (copy == null && copiedObjects.Contains(this)) { return((Meal)copiedObjects[this]); } copy = copy ?? new Meal(); if (!asNew) { copy.TransientId = this.TransientId; copy.Id = this.Id; } copy.Description = this.Description; copy.Code = this.Code; copy.SimpleMeal = this.SimpleMeal; copy.HotMeal = this.HotMeal; copy.ColdMeal = this.ColdMeal; copy.Breakfast = this.Breakfast; copy.ContinentalBreakfast = this.ContinentalBreakfast; copy.Lunch = this.Lunch; copy.Dinner = this.Dinner; copy.SnackOrBrunch = this.SnackOrBrunch; copy.FoodForPurchase = this.FoodForPurchase; copy.ComplimentaryRefreshments = this.ComplimentaryRefreshments; copy.AlcoholicBeveragesForPurchase = this.AlcoholicBeveragesForPurchase; copy.ComplimentaryAlcoholicBeverages = this.ComplimentaryAlcoholicBeverages; copy.FoodAndBeveragesForPurchase = this.FoodAndBeveragesForPurchase; copy.NoMealService = this.NoMealService; copy.RefreshmentsForPurchase = this.RefreshmentsForPurchase; if (!copiedObjects.Contains(this)) { copiedObjects.Add(this, copy); } return(copy); }