using Microsoft.EntityFrameworkCore; using PARR.DAL.Contracts; using PARR.DAL.Models; using PARR.DAL.Models.AIHIT; namespace PARR.DAL.Context { internal class DataContext : DbContext { public DataContext(DbContextOptions options) : base(options) { } 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