using LiteCharms.Entities; namespace LiteCharms.Infrastructure.Database; public class LeadGeneratorDbContext(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; } }