hrms-api-backend/BMA.EHR.Application/Common/Interfaces/IApplicationDBContext.cs
Suphonchai Phoonsawat 1ba2f2eec1 Restructure TAble
2023-06-25 18:36:02 +07:00

23 lines
697 B
C#

using BMA.EHR.Domain.Entities.MetaData.BloodGroup;
using BMA.EHR.Domain.Entities.MetaData.Prefix;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Application.Common.Interfaces
{
public interface IApplicationDBContext
{
DbSet<PrefixEntity> MD_Prefixes { get; set; }
DbSet<PrefixDraftEntity> MD_Prefix_Drafts { get; set; }
DbSet<PrefixPublishHistoryEntity> MD_Prefix_Histories { get; set; }
DbSet<BloodGroupEntity> MD_BloodGroups { get; set; }
DbSet<BloodGroupDraftEntity> MD_BloodGroup_Drafts { get; set; }
DbSet<BloodGroupPublishHistoryEntity> MD_BloodGroup_Histories { get; set; }
Task<int> SaveChangesAsync();
}
}