Interface IDbEntity
All classes that instantiate entities stored in the application database must implement this interface.
Inherited Members
Namespace: Quantellia.WMServer.Base
Assembly: WMServer.dll
Syntax
public interface IDbEntity : IWMEntity
Remarks
The database primary key will use the ID property, inherited from the IWMEntity interface. This should be ipmlemented as a GUID.
Only objects that are stored in the application database implement IDbEntity, whereas all instantiable classes with identiable objects implement IWMEntity.
Properties
CreatedBy
ID of the WMUser that created this entity
Declaration
string CreatedBy { get; }
Property Value
Type | Description |
---|---|
string |
CreatedDate
The date and time at which this entity was created.
Declaration
DateTime CreatedDate { get; }
Property Value
Type | Description |
---|---|
DateTime |
LastUpdatedBy
ID of the WMUser that last updated this entity
Declaration
string LastUpdatedBy { get; }
Property Value
Type | Description |
---|---|
string |
LastUpdatedDate
The date and time at which this entity was last updated.
Declaration
DateTime LastUpdatedDate { get; }
Property Value
Type | Description |
---|---|
DateTime |