using BMA.EHR.Application.Common.Interfaces; using BMA.EHR.Domain.Entities.MetaData; using Microsoft.EntityFrameworkCore; namespace BMA.EHR.Infrastructure.Persistence { public class ApplicationDBContext : DbContext, IApplicationDBContext { public ApplicationDBContext(DbContextOptions options) : base(options) { } public DbSet Prefixes { get; set; } public DbSet BloodGroups { get; set; } public Task SaveChangesAsync() { return base.SaveChangesAsync(); } } }