/// <summary> /// Create a new Product object. /// </summary> /// <param name="productGuid">Initial value of the ProductGuid property.</param> /// <param name="productName">Initial value of the ProductName property.</param> /// <param name="instanceCount">Initial value of the InstanceCount property.</param> /// <param name="vendorId">Initial value of the VendorId property.</param> /// <param name="productId">Initial value of the ProductId property.</param> public static Product CreateProduct(global::System.Guid productGuid, global::System.String productName, global::System.Int32 instanceCount, global::System.Int32 vendorId, global::System.Int32 productId) { Product product = new Product(); product.ProductGuid = productGuid; product.ProductName = productName; product.InstanceCount = instanceCount; product.VendorId = vendorId; product.ProductId = productId; return product; }
/// <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(Product product) { base.AddObject("Products", product); }