/// <summary> /// Deprecated Method for adding a new object to the Product EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToProduct(Product product) { base.AddObject("Product", product); }
/// <summary> /// Create a new Product object. /// </summary> /// <param name="productId">Initial value of the ProductId property.</param> /// <param name="name">Initial value of the Name property.</param> /// <param name="description">Initial value of the Description property.</param> /// <param name="unitPrice">Initial value of the UnitPrice property.</param> /// <param name="featured">Initial value of the Featured property.</param> public static Product CreateProduct(global::System.Int32 productId, global::System.String name, global::System.String description, global::System.Decimal unitPrice, global::System.Boolean featured) { Product product = new Product(); product.ProductId = productId; product.Name = name; product.Description = description; product.UnitPrice = unitPrice; product.Featured = featured; return product; }