using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EmployeeManagmentDataBaseImplement { public class DatabaseContext : DbContext { public DbSet Employees { get; set; } public DbSet PhysicalPersons { get; set; } public DbSet Salaries { get; set; } public DbSet Vacations { get; set; } public DatabaseContext(DbContextOptions options) : base(options) { } protected override void OnModelCreating(ModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); } } }