/// <summary> /// Deprecated Method for adding a new object to the Items EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToItems(Items items) { base.AddObject("Items", items); }
/// <summary> /// Create a new Items object. /// </summary> /// <param name="itemId">Initial value of the ItemId property.</param> /// <param name="itemCode">Initial value of the ItemCode property.</param> public static Items CreateItems(global::System.Int32 itemId, global::System.String itemCode) { Items items = new Items(); items.ItemId = itemId; items.ItemCode = itemCode; return items; }