using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.EntityFrameworkCore; using Assignment3.Models; namespace Assignment3.Data { public class Assignment3Context : DbContext { public Assignment3Context (DbContextOptions options) : base(options) { } public DbSet Immunization { get; set; } = default!; public DbSet? Organization { get; set; } public DbSet? Patient { get; set; } public DbSet? Provider { get; set; } public DbSet? Error { get; set; } } }