using DutchTreat.Data.Entities; using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DutchTreat.Data { public class DutchContext : IdentityDbContext { public DutchContext(DbContextOptions options) : base(options) { } public DbSet Products { get; set; } public DbSet Orders { get; set; } } }