EntitiesTable Class
Grants direct access to the BCP entities.
Namespace: bcpDevKit
Assembly: bcpDevKit.dll
Syntax
public class EntitiesTable
Properties
Type |
Name |
Description |
---|---|---|
Vault |
Provides access to default Vault entities. |
|
Itemswrapper |
Provides access to Item entities. |
|
BOMwrapper |
Provides access to BOM entities. |
|
CustomObjectWrapper |
Provides access to CustomObject entities. |
|
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");