using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using MVCTemplate.Data.Data; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MVCTemplate.Data.DbContexts { public class AppDbContext : IdentityDbContext { public AppDbContext(DbContextOptions options) : base(options) { } } }