Adds the specified quantity of the provided product to the kit that comprises this CProduct.

Namespace:  Asi.iBO.Commerce
Assembly:  Asi.iBO (in Asi.iBO.dll) Version: 15.1.2.0

Syntax

C#
public CKitItem AddKitItem(
	CStandardProduct product,
	double quantity,
	string description
)
Visual Basic (Declaration)
Public Function AddKitItem ( _
	product As CStandardProduct, _
	quantity As Double, _
	description As String _
) As CKitItem
Visual C++
public:
CKitItem^ AddKitItem(
	CStandardProduct^ product, 
	double quantity, 
	String^ description
)

Parameters

product
Type: Asi.iBO.Commerce..::.CStandardProduct
The CStandardProduct to be added
quantity
Type: System..::.Double
The quantity to be added.
description
Type: System..::.String
The description of the new CKitItem.

Return Value

The new CKitItem object.

See Also