using LiteCharms.Features.TechShop.CartPackages.Entities; using LiteCharms.Features.TechShop.Customers.Entities; using LiteCharms.Features.TechShop.Leads.Entities; using LiteCharms.Features.TechShop.Notifications.Entities; using LiteCharms.Features.TechShop.Orders.Entities; using LiteCharms.Features.TechShop.Products.Entities; using LiteCharms.Features.TechShop.Quotes.Entities; using LiteCharms.Features.TechShop.ShoppingCarts.Entities; namespace LiteCharms.Features.TechShop.Postgres; public class ShopDbContext(DbContextOptions options) : DbContext(options) { public DbSet Customers { get; set; } public DbSet Leads { get; set; } public DbSet Orders { get; set; } public DbSet OrderRefunds { get; set; } public DbSet Products { get; set; } public DbSet ProductPrices { get; set; } public DbSet Notifications { get; set; } public DbSet Quotes { get; set; } public DbSet ShoppingCarts { get; set; } public DbSet ShoppingCartItems { get; set; } public DbSet Packages { get; set; } public DbSet PackageItems { get; set; } public DbSet ShoppingCartPackages { get; set; } }