/// <summary>
 /// Create a new Order object.
 /// </summary>
 /// <param name="id">Initial value of the ID property.</param>
 /// <param name="userID">Initial value of the UserID property.</param>
 /// <param name="orderDate">Initial value of the OrderDate property.</param>
 public static Order CreateOrder(global::System.Int32 id, global::System.Int32 userID, global::System.DateTime orderDate)
 {
     Order order = new Order();
     order.ID = id;
     order.UserID = userID;
     order.OrderDate = orderDate;
     return order;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the Orders EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToOrders(Order order)
 {
     base.AddObject("Orders", order);
 }