using Microsoft.EntityFrameworkCore; using PARR.DAL.Contracts; using PARR.DAL.Models; using PARR.DAL.Models.AIHIT; using PARR.DAL.Models.V1; namespace PARR.DAL.Context { internal class DataContext : DbContext { public DataContext(DbContextOptions options) : base(options) { } #region v1 public DbSet JobTypes { get; set; } public DbSet JobCategories { get; set; } public DbSet JobModes { get; set; } public DbSet JobStatuses { get; set; } public DbSet V1_Hosts { get; set; } public DbSet Jobs { get; set; } public DbSet JobJournals { get; set; } public DbSet V1_Applications { get; set; } public DbSet V1_ApplicationTypes { get; set; } public DbSet V1_ApplicationsInHosts { get; set; } #endregion public DbSet Hosts { get; set; } public DbSet EkStatuses { get; set; } public DbSet ResponseAreas { get; set; } public DbSet Applications { get; set; } public DbSet ApplicationTypes { get; set; } public DbSet ApplicationsInHosts { get; set; } public DbSet Settings { get; set; } public DbSet RawDataEKs { get; set; } public DbSet