Class BomItemViewModel
- Namespace
- Dynamicweb.Ecommerce.ProductCatalog
- Assembly
- Dynamicweb.Ecommerce.dll
Represents a view model for rendering an item in a BOM (bundles) in the ecommerce product catalog.
public class BomItemViewModel : FillableViewModelBase
- Inheritance
-
BomItemViewModel
- Inherited Members
Remarks
An item in a bundle is a product that is part of the bundle. The product can have fixed products (items) that the user cannot change, and it can have configurable groups of products where the user can select between different products within that BOM group to configure the final product bundle.
Properties
Id
Gets or sets the ID of the BOM item.
public required string Id { get; set; }
Property Value
Name
Gets or sets the name of the BOM item.
public required string Name { get; set; }
Property Value
Product
Gets or sets the product information of the BOM item.
public required ProductInfoViewModel Product { get; set; }
Property Value
Quantity
Gets or sets the quantity of the BOM item.
public double Quantity { get; set; }