/// <summary> /// Create a new Order object. /// </summary> /// <param name="orderID">Initial value of the OrderID property.</param> /// <param name="custID">Initial value of the CustID property.</param> /// <param name="carID">Initial value of the CarID property.</param> public static Order CreateOrder(global::System.Int32 orderID, global::System.Int32 custID, global::System.Int32 carID) { Order order = new Order(); order.OrderID = orderID; order.CustID = custID; order.CarID = carID; return order; }
/// <summary> /// Deprecated Method for adding a new object to the Orders EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToOrders(Order order) { base.AddObject("Orders", order); }