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 MD_Prefixes { get; set; } DbSet MD_Prefix_Drafts { get; set; } DbSet MD_Prefix_Histories { get; set; } DbSet MD_BloodGroups { get; set; } DbSet MD_BloodGroup_Drafts { get; set; } DbSet MD_BloodGroup_Histories { get; set; } Task SaveChangesAsync(); } }