using Microsoft.EntityFrameworkCore; using PARR.BLL.Domain; using PARR.Constants; using PARR.DAL.Contracts; using PARR.DAL.Extensions; using PARR.DAL.Models; using PARR.DAL.Models.Job; using PARR.DAL.Models.Unit; namespace PARR.DAL.Context { internal class DataContext : DbContext { public DataContext(DbContextOptions options) : base(options) { } public DbSet Hosts { get; set; } public DbSet WorkGroups { get; set; } public DbSet AppInWorkInWorkGroups { 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