using Microsoft.EntityFrameworkCore; namespace DamageAssesment.Api.Employees.Db { public class EmployeeDbContext: DbContext { public DbSet Employees { get; set; } public EmployeeDbContext(DbContextOptions options) : base(options) { } } }