Add project files.
This commit is contained in:
parent
cc6b248537
commit
717b0f0a8e
31 changed files with 1296 additions and 0 deletions
7
BMA.EHR.Domain/Common/Interfaces/IActivableEntity.cs
Normal file
7
BMA.EHR.Domain/Common/Interfaces/IActivableEntity.cs
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
namespace BMA.EHR.Domain.Common.Interfaces
|
||||
{
|
||||
public interface IActivableEntity
|
||||
{
|
||||
bool IsActive { get; set; }
|
||||
}
|
||||
}
|
||||
17
BMA.EHR.Domain/Common/Interfaces/IAuditableEntity.cs
Normal file
17
BMA.EHR.Domain/Common/Interfaces/IAuditableEntity.cs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
namespace BMA.EHR.Domain.Common.Interfaces
|
||||
{
|
||||
public interface IAuditableEntity
|
||||
{
|
||||
Guid CreatedUserId { get; set; }
|
||||
|
||||
string CreatedUserFullName { get; set; }
|
||||
|
||||
DateTime CreatedDate { get; set; }
|
||||
|
||||
Guid? ModifiedUserId { get; set; }
|
||||
|
||||
string? ModifiedUserFullName { get; set; }
|
||||
|
||||
DateTime? ModifiedDate { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue