using Microsoft.EntityFrameworkCore; using SurveyLib.Core.Models; namespace SurveyLib.Infrastructure.EFCore.Data; public class SurveyDbContext : DbContext { public DbSet Surveys { get; set; } public DbSet Questions { get; set; } public DbSet Completions { get; set; } public DbSet Answers { get; set; } public SurveyDbContext(DbContextOptions options) : base(options) { } }