Class FullAuditedEntityDto<TPrimaryKey>
This class can be inherited by DTO classes to implement IFull
Inheritance
EntityDto <TPrimaryKey>
CreationAuditedEntityDto <TPrimaryKey>
AuditedEntityDto <TPrimaryKey>
FullAuditedEntityDto<TPrimaryKey>
Implements
IEntityDto <TPrimaryKey>
Inherited Members
Namespace: Code.Library.Dtos
Assembly: Code.Library.dll
Syntax
[Serializable]
public abstract class FullAuditedEntityDto<TPrimaryKey> : AuditedEntityDto<TPrimaryKey>, IEntityDto<TPrimaryKey>, IEntityDto, IFullAuditedObject, IAuditedObject, ICreationAuditedObject, IHasCreationTime, IMayHaveCreator, IModificationAuditedObject, IHasModificationTime, IDeletionAuditedObject, IHasDeletionTime, ISoftDelete
Type Parameters
Name | Description |
---|---|
TPrimaryKey | Type of primary key |
Properties
| Improve this Doc View SourceDeleterId
Id of the deleter user.
Declaration
public Guid? DeleterId { get; set; }
Property Value
Type | Description |
---|---|
Guid? |
DeletionTime
Deletion time.
Declaration
public DateTime? DeletionTime { get; set; }
Property Value
Type | Description |
---|---|
Date |
IsDeleted
Used to mark an Entity as 'Deleted'.
Declaration
public bool IsDeleted { get; set; }
Property Value
Type | Description |
---|---|
bool |