The object model which is defined in the assembly Winbooks.TORM.OM.dll has 4 namespaces:

NamespaceContains
Winbooks.TORM.OMAll the classes common to the accounting and the logistics module
Winbooks.TORM.OM.AccountingAll the classes specific to the accounting module
Winbooks.TORM.OM.LogisticsAll the classes specific to the logistics module

Common properties to each entity

Every entities have the same following properties that we will not repeat for each entity in this document:

PropertyTypeDescription
IdGuidUnique identifier of the entity.
VersionInt32

Version of the entity. When it is created, it is initialized at 1. At each update, the version is incremented.

This property is managed by the DAL and you should not modify it.

ModifiedDateTimeDateTime of the last modification of the entity (Managed by the DAL).
ModifiedByGuidUser's Id of the user who made the last modification (Managed by the DAL).
CreatedDateTimeDateTime of the creation of the entity (Managed by the DAL).
CreatedByGuidUser's Id of the user who created the entity (Managed by the DAL).


  • No labels