using BMA.EHR.Recurit.Exam.Service.Models; using BMA.EHR.Recurit.Exam.Service.Models.Documents; using Microsoft.EntityFrameworkCore; namespace BMA.EHR.Recurit.Exam.Service.Data { public class ApplicationDbContext : DbContext { public ApplicationDbContext(DbContextOptions options) : base(options) { } protected override void OnModelCreating(ModelBuilder modelBuilder) { } public DbSet Prefixes { get; set; } public DbSet Religions { get; set; } public DbSet Relationships { get; set; } public DbSet EducationLevels { get; set; } public DbSet Provinces { get; set; } public DbSet Districts { get; set; } public DbSet SubDistricts { get; set; } public DbSet PeriodExams { get; set; } public DbSet Candidates { get; set; } public DbSet Careers { get; set; } public DbSet Educations { get; set; } public DbSet Documents { get; set; } public DbSet CandidateDocuments { get; set; } } }