/// <summary>
 /// Deprecated Method for adding a new object to the Products EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToProducts(Product product)
 {
     base.AddObject("Products", product);
 }
 /// <summary>
 /// Create a new Product 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 Product CreateProduct(global::System.Int32 product_ID, global::System.String product_Name, global::System.Boolean discontinued)
 {
     Product product = new Product();
     product.Product_ID = product_ID;
     product.Product_Name = product_Name;
     product.Discontinued = discontinued;
     return product;
 }