using Microsoft.AspNetCore.Identity; using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; using Newtonsoft.Json; namespace PSTW_CentralSystem.DBContext { public class AuthDBContext : IdentityDbContext { private readonly IWebHostEnvironment _hostingEnvironment; public AuthDBContext(DbContextOptions options, IWebHostEnvironment hostingEnvironment) : base(options) { _hostingEnvironment = hostingEnvironment; } protected override void OnModelCreating(ModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); } } }