19 lines
636 B
C#
19 lines
636 B
C#
using LiteCharms.Features.TechShop.Leads.Entities;
|
|
using LiteCharms.Features.TechShop.Orders.Entities;
|
|
using LiteCharms.Features.TechShop.Quotes.Entities;
|
|
using LiteCharms.Features.TechShop.ShoppingCarts.Entities;
|
|
|
|
namespace LiteCharms.Features.TechShop.Customers.Entities;
|
|
|
|
[EntityTypeConfiguration<CustomerConfiguration, Customer>]
|
|
public class Customer : Models.Customer
|
|
{
|
|
public virtual ICollection<Lead>? Leads { get; set; }
|
|
|
|
public virtual ICollection<Order>? Orders { get; set; }
|
|
|
|
public virtual ICollection<Quote>? Quotes { get; set; }
|
|
|
|
public virtual ICollection<ShoppingCart>? ShoppingCarts { get; set; }
|
|
}
|