Example #1
0
 /// <summary>
 /// Create a new Order object.
 /// </summary>
 /// <param name="orderID">Initial value of the OrderID property.</param>
 /// <param name="customerID">Initial value of the CustomerID property.</param>
 /// <param name="orderDate">Initial value of the OrderDate property.</param>
 /// <param name="note">Initial value of the Note property.</param>
 public static Order CreateOrder(global::System.Int32 orderID, global::System.Int32 customerID, global::System.DateTime orderDate, global::System.String note)
 {
     Order order = new Order();
     order.OrderID = orderID;
     order.CustomerID = customerID;
     order.OrderDate = orderDate;
     order.Note = note;
     return order;
 }
Example #2
0
 /// <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);
 }