/// <summary>
 /// Create a new DietPlan object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="isActive">Initial value of the IsActive property.</param>
 public static DietPlan CreateDietPlan(global::System.Int32 id, global::System.String name, global::System.Boolean isActive)
 {
     DietPlan dietPlan = new DietPlan();
     dietPlan.Id = id;
     dietPlan.Name = name;
     dietPlan.IsActive = isActive;
     return dietPlan;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the DietPlans EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToDietPlans(DietPlan dietPlan)
 {
     base.AddObject("DietPlans", dietPlan);
 }