using AspNetCoreApi.Models; using Microsoft.EntityFrameworkCore; namespace AspNetCoreApi.DbContexts { public class AppDbContext : DbContext { public DbSet Products { get; set; } public DbSet ApplicationUsers { get; set; } public AppDbContext(DbContextOptions options) : base(options) { } } }