20 lines
582 B
C#
20 lines
582 B
C#
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using WebVentaCoche.Models;
|
|
|
|
namespace WebVentaCoche.DataBase
|
|
{
|
|
public class ApplicationDbContext : IdentityDbContext<User>
|
|
{
|
|
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
|
|
: base(options)
|
|
{
|
|
}
|
|
|
|
public DbSet<Product> Products { get; set; }
|
|
public DbSet<User> Users { get; set; }
|
|
public DbSet<Order> Orders { get; set; }
|
|
public DbSet<OrderDetail> OrderDetails { get; set; }
|
|
}
|
|
}
|