/// <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="product_ID">Initial value of the Product_ID property.</param> /// <param name="product_Name">Initial value of the Product_Name property.</param> /// <param name="discontinued">Initial value of the Discontinued property.</param> public static Products CreateProducts(global::System.Int32 product_ID, global::System.String product_Name, global::System.Boolean discontinued) { Products products = new Products(); products.Product_ID = product_ID; products.Product_Name = product_Name; products.Discontinued = discontinued; return products; }