/// <summary>
 /// updates the InBagsCount
 /// </summary>
 internal void UpdateInBagsCount()
 {
     InBagsCount = Ingredient.GetInBagItemCount(Parent.ID);
 }
 internal IngredientSubClass(Ingredient parent, uint inBagCount)
 {
     Parent      = parent;
     InBagsCount = inBagCount;
 }