using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; using SistemaGestionAcademias.Models; namespace SistemaGestionAcademias.Data { public class ApplicationDbContext : IdentityDbContext { public ApplicationDbContext(DbContextOptions options) : base(options) { } protected override void OnModelCreating(ModelBuilder builder) { base.OnModelCreating(builder); } // --- TABLAS DEL SISTEMA --- public DbSet Categorias { get; set; } public DbSet Instructores { get; set; } public DbSet Actividades { get; set; } public DbSet Alumnos { get; set; } public DbSet Inscripciones { get; set; } public DbSet Configuraciones { get; set; } public DbSet CajasDiarias { get; set; } public DbSet Gastos { get; set; } // --- NUEVAS TABLAS DE ASISTENCIA --- public DbSet SesionesClase { get; set; } public DbSet Asistencias { get; set; } } }