using LiteCharms.Features.Shop.CartPackages.Entities; using LiteCharms.Features.Shop.Customers.Entities; using LiteCharms.Features.Shop.Leads.Entities; using LiteCharms.Features.Shop.Notifications.Entities; using LiteCharms.Features.Shop.Orders.Entities; using LiteCharms.Features.Shop.Products.Entities; using LiteCharms.Features.Shop.Quotes.Entities; using LiteCharms.Features.Shop.ShoppingCarts.Entities; namespace LiteCharms.Features.Shop.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; } }