Created Order, Refund, Shipping
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
using LiteCharms.Features.MidrandBooks.AuthorBooks.Entities;
|
||||
using LiteCharms.Features.MidrandBooks.Authors.Entities;
|
||||
using LiteCharms.Features.MidrandBooks.Customers.Entities;
|
||||
using LiteCharms.Features.MidrandBooks.Orders.Entities;
|
||||
using LiteCharms.Features.MidrandBooks.Pages.Entities;
|
||||
using LiteCharms.Features.MidrandBooks.Products.Entities;
|
||||
|
||||
@@ -23,4 +24,14 @@ public class MidrandBooksDbContext(DbContextOptions<MidrandBooksDbContext> optio
|
||||
public DbSet<Address> Addresses => Set<Address>();
|
||||
|
||||
public DbSet<Customer> Customers => Set<Customer>();
|
||||
|
||||
public DbSet<Order> Orders => Set<Order>();
|
||||
|
||||
public DbSet<OrderItem> OrderItems => Set<OrderItem>();
|
||||
|
||||
public DbSet<Refund> Refunds => Set<Refund>();
|
||||
|
||||
public DbSet<Shipping> Shippings => Set<Shipping>();
|
||||
|
||||
public DbSet<ShippingProvider> ShippingProviders => Set<ShippingProvider>();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user