Ejemplo n.º 1
0
 /// <summary>
 /// Create a new Product object.
 /// </summary>
 /// <param name="productID">Initial value of the ProductID property.</param>
 /// <param name="categoryID">Initial value of the CategoryID property.</param>
 /// <param name="unitCost">Initial value of the UnitCost property.</param>
 public static Product CreateProduct(global::System.Int32 productID, global::System.Int32 categoryID, global::System.Decimal unitCost)
 {
     Product product = new Product();
     product.ProductID = productID;
     product.CategoryID = categoryID;
     product.UnitCost = unitCost;
     return product;
 }
Ejemplo n.º 2
0
 /// <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);
 }