/// <summary>
 /// Deprecated Method for adding a new object to the Entries EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToEntries(Entry entry)
 {
     base.AddObject("Entries", entry);
 }
 /// <summary>
 /// Create a new Entry object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="count">Initial value of the Count property.</param>
 /// <param name="deliveryEntityId">Initial value of the DeliveryEntityId property.</param>
 public static Entry CreateEntry(global::System.Int32 id, global::System.Int32 count, global::System.Int32 deliveryEntityId)
 {
     Entry entry = new Entry();
     entry.Id = id;
     entry.Count = count;
     entry.DeliveryEntityId = deliveryEntityId;
     return entry;
 }