Added shared projects
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using LiteCharms.Entities;
|
||||
|
||||
namespace LiteCharms.Infrastructure.Database;
|
||||
|
||||
public class LeadGeneratorDbContext(DbContextOptions<LeadGeneratorDbContext> options) : DbContext(options)
|
||||
{
|
||||
public DbSet<Customer> Customers { get; set; }
|
||||
|
||||
public DbSet<Lead> Leads { get; set; }
|
||||
|
||||
public DbSet<Order> Orders { get; set; }
|
||||
|
||||
public DbSet<OrderRefund> OrderRefunds { get; set; }
|
||||
|
||||
public DbSet<Product> Products { get; set; }
|
||||
|
||||
public DbSet<ProductPrice> ProductPrices { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user