18 lines
490 B
C#
18 lines
490 B
C#
using LiteCharms.Entities.Configuration;
|
|
|
|
namespace LiteCharms.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<Package>? Packages { get; set; }
|
|
}
|