20 lines
664 B
C#
20 lines
664 B
C#
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; }
|
|
}
|