This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using LiteCharms.Features.TechShop.Customers.Entities;
|
||||
using LiteCharms.Features.TechShop.Orders.Entities;
|
||||
using LiteCharms.Features.TechShop.Quotes.Entities;
|
||||
|
||||
namespace LiteCharms.Features.TechShop.ShoppingCarts.Entities;
|
||||
|
||||
[EntityTypeConfiguration<ShoppingCartConfiguration, ShoppingCart>]
|
||||
public class ShoppingCart : Models.ShoppingCart
|
||||
{
|
||||
public virtual Customer? Customer { get; set; }
|
||||
|
||||
public virtual Order? Order { get; set; }
|
||||
|
||||
public virtual Quote? Quote { get; set; }
|
||||
|
||||
public virtual ICollection<ShoppingCartItem>? ShoppingCartItems { get; set; }
|
||||
|
||||
public virtual ICollection<ShoppingCartPackage>? ShoppingCartPackages { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user