using Domain.Entities; using Microsoft.EntityFrameworkCore; namespace Infrastructure; public class HealthcareManagerDatabase(DbContextOptions options) : DbContext(options) { public DbSet Patients { get; set; } public DbSet MedicalHistories { get; set; } public DbSet Doctors { get; set; } public DbSet Admins { get; set; } protected override void OnModelCreating(ModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); } }