using ConstructorApp.EntityLayer.Entities; using Microsoft.AspNetCore.Identity; using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; using static ConstructorApp.EntityLayer.Entities.Project; namespace ConstructorApp.DataAccessLayer.Concrete { public class ConstructorContext : IdentityDbContext { public ConstructorContext(DbContextOptions options) : base(options) { } public DbSet CompanyInfo { get; set; } public DbSet ContactUs { get; set; } public DbSet