Add Keycloak and GlobalException

This commit is contained in:
Suphonchai Phoonsawat 2023-06-25 18:48:28 +07:00
parent 1ba2f2eec1
commit e49c6a4aca
7 changed files with 2053 additions and 3 deletions

View file

@ -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();
}
}