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] 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? ShoppingCartItems { get; set; } public virtual ICollection? ShoppingCartPackages { get; set; } }