/// <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); }
/// <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="price">Initial value of the Price property.</param> /// <param name="isDeleted">Initial value of the IsDeleted property.</param> public static Product CreateProduct(global::System.Int32 productId, global::System.String name, global::System.String description, global::System.Decimal price, global::System.Boolean isDeleted) { Product product = new Product(); product.ProductId = productId; product.Name = name; product.Description = description; product.Price = price; product.IsDeleted = isDeleted; return product; }