public static ProductsModel Map(Product p) { return new ProductsModel { Id = p.ProductId, Name = p.Name, Description = p.Description, CategoryId = p.Category.Value, Price = p.Price.Value, Stock = p.Stock.Value, Category = p.Category1.Name, ImageUrl = p.ImageUrl }; }
/// <summary> /// Create a new Product object. /// </summary> /// <param name="productId">Initial value of the ProductId property.</param> public static Product CreateProduct(global::System.Int32 productId) { Product product = new Product(); 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); }