/// <summary>
 /// Deprecated Method for adding a new object to the SupplementEntries EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToSupplementEntries(SupplementEntry supplementEntry)
 {
     base.AddObject("SupplementEntries", supplementEntry);
 }
 /// <summary>
 /// Create a new SupplementEntry object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="userId">Initial value of the UserId property.</param>
 /// <param name="entryDate">Initial value of the EntryDate property.</param>
 /// <param name="savedDate">Initial value of the SavedDate property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="milligrams">Initial value of the Milligrams property.</param>
 public static SupplementEntry CreateSupplementEntry(global::System.Int32 id, global::System.Guid userId, global::System.DateTime entryDate, global::System.DateTime savedDate, global::System.String name, global::System.Decimal milligrams)
 {
     SupplementEntry supplementEntry = new SupplementEntry();
     supplementEntry.Id = id;
     supplementEntry.UserId = userId;
     supplementEntry.EntryDate = entryDate;
     supplementEntry.SavedDate = savedDate;
     supplementEntry.Name = name;
     supplementEntry.Milligrams = milligrams;
     return supplementEntry;
 }