Add Keycloak and GlobalException
This commit is contained in:
parent
1ba2f2eec1
commit
e49c6a4aca
7 changed files with 2053 additions and 3 deletions
|
|
@ -5,19 +5,27 @@ using Microsoft.EntityFrameworkCore;
|
|||
namespace BMA.EHR.Application.Common.Interfaces
|
||||
{
|
||||
public interface IApplicationDBContext
|
||||
{
|
||||
{
|
||||
#region " Prefix "
|
||||
|
||||
DbSet<PrefixEntity> MD_Prefixes { get; set; }
|
||||
|
||||
DbSet<PrefixDraftEntity> MD_Prefix_Drafts { get; set; }
|
||||
|
||||
DbSet<PrefixPublishHistoryEntity> MD_Prefix_Histories { get; set; }
|
||||
|
||||
#endregion
|
||||
|
||||
#region " BloodGroup "
|
||||
|
||||
DbSet<BloodGroupEntity> MD_BloodGroups { get; set; }
|
||||
|
||||
DbSet<BloodGroupDraftEntity> MD_BloodGroup_Drafts { get; set; }
|
||||
|
||||
DbSet<BloodGroupPublishHistoryEntity> MD_BloodGroup_Histories { get; set; }
|
||||
|
||||
#endregion
|
||||
|
||||
Task<int> SaveChangesAsync();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue