/// <summary> /// Create a new Order object. /// </summary> /// <param name="id">Initial value of the Id property.</param> /// <param name="price">Initial value of the Price property.</param> /// <param name="status">Initial value of the Status property.</param> public static Order CreateOrder(global::System.Int32 id, global::System.Decimal price, global::System.String status) { Order order = new Order(); order.Id = id; order.Price = price; order.Status = status; 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); }