Table of Contents

Class BomConfigurationViewModel

Namespace
Dynamicweb.Ecommerce.ProductCatalog
Assembly
Dynamicweb.Ecommerce.dll

If the product is of type BOM this can be returned and is the container around all BOM data

public class BomConfigurationViewModel : FillableViewModelBase
Inheritance
BomConfigurationViewModel
Inherited Members

Remarks

BOM is a bundle of a product. 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

Groups

Gets or sets the list of BOM groups.

public required List<BomGroupViewModel> Groups { get; set; }

Property Value

List<BomGroupViewModel>

Items

Gets or sets the list of BOM items.

public required List<BomItemViewModel> Items { get; set; }

Property Value

List<BomItemViewModel>
To top