18 lines
546 B
C#
18 lines
546 B
C#
using LiteCharms.Features.TechShop.Customers.Entities;
|
|
using LiteCharms.Features.TechShop.Quotes.Entities;
|
|
using LiteCharms.Features.TechShop.ShoppingCarts.Entities;
|
|
|
|
namespace LiteCharms.Features.TechShop.Orders.Entities;
|
|
|
|
[EntityTypeConfiguration<OrderConfiguration, Order>]
|
|
public class Order : Models.Order
|
|
{
|
|
public virtual ICollection<OrderRefund>? Refunds { get; set; }
|
|
|
|
public virtual Customer? Customer { get; set; }
|
|
|
|
public virtual Quote? Quote { get; set; }
|
|
|
|
public virtual ShoppingCart? ShoppingCart { get; set; }
|
|
}
|