using Microsoft.EntityFrameworkCore; using WorkFlow.Domain.Entities; namespace WorkFlow.Infrastructure { public class WFDBContext(DbContextOptions options) : DbContext(options) { public DbSet Configs { get; set; } public DbSet ProfControlsTfs { get; set; } public DbSet Profiles { get; set; } public DbSet ProfileObjStates { get; set; } public DbSet WfStates { get; set; } } }