/// <summary>
 /// Create a new Ingredient object.
 /// </summary>
 /// <param name="ingredientId">Initial value of the IngredientId property.</param>
 /// <param name="recipeId">Initial value of the RecipeId property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="version">Initial value of the Version property.</param>
 public static Ingredient CreateIngredient(global::System.Decimal ingredientId, global::System.Decimal recipeId, global::System.String name, global::System.Byte[] version)
 {
     Ingredient ingredient = new Ingredient();
     ingredient.IngredientId = ingredientId;
     ingredient.RecipeId = recipeId;
     ingredient.Name = name;
     ingredient.Version = version;
     return ingredient;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the Ingredients EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToIngredients(Ingredient ingredient)
 {
     base.AddObject("Ingredients", ingredient);
 }