EntitiesTable Class

Grants direct access to the BCP entities.

Namespace: bcpDevKit
Assembly: bcpDevKit.dll

Syntax

public class EntitiesTable

Properties

Type

Name

Description

../../../_images/prop.ico Vault

Vault

Provides access to default Vault entities.

../../../_images/prop.ico Itemswrapper

Itemswrapper

Provides access to Item entities.

../../../_images/prop.ico BOMwrapper

BOMwrapper

Provides access to BOM entities.

../../../_images/prop.ico CustomObjectWrapper

CustomObjectWrapper

Provides access to CustomObject entities.

../../../_images/prop.ico UOMwrapper

UOMwrapper

Provides access to UOM entities.

Remarks

For more details about how this classes are structered, please give a look to the xsd files coming with the vaultBCP installation.

Examples

Accessing CustomObjectWrapper via EntitiesTable:

var customObjects = bcpService.EntitiesTable.CustomObjectWrapper;
var definition = customObjects .AddCustomObjectDefinition("Dragonball", "Dragonballs");
definition.SetIcon(@".\Dragon-Ball-icon.ico");