2024-10-23 01:10:34 +02:00

18 lines
494 B
C#

using Microsoft.EntityFrameworkCore;
using WorkFlow.Domain.Entities;
namespace WorkFlow.Infrastructure
{
public class WFDBContext(DbContextOptions options) : DbContext(options)
{
public DbSet<Config> Configs { get; set; }
public DbSet<ProfControlsTf> ProfControlsTf { get; set; }
public DbSet<Profile> Profiles { get; set; }
public DbSet<ProfileObjState> ProfileObjStates { get; set; }
public DbSet<WfState> WfStates { get; set; }
}
}