/// <summary> /// Deprecated Method for adding a new object to the Products EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToProducts(Products products) { base.AddObject("Products", products); }
/// <summary> /// Create a new Products object. /// </summary> /// <param name="discontinued">Initial value of the Discontinued property.</param> /// <param name="productID">Initial value of the ProductID property.</param> /// <param name="productName">Initial value of the ProductName property.</param> public static Products CreateProducts(global::System.Boolean discontinued, global::System.Int32 productID, global::System.String productName) { Products products = new Products(); products.Discontinued = discontinued; products.ProductID = productID; products.ProductName = productName; return products; }