using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; using WebVentaCoche.Models; namespace WebVentaCoche.DataBase { public class ApplicationDbContext : IdentityDbContext { public ApplicationDbContext(DbContextOptions options) : base(options) { } public DbSet Products { get; set; } public DbSet Users { get; set; } public DbSet Orders { get; set; } public DbSet OrderDetails { get; set; } } }