83f51c6a23
Added shopping cart and items Added quotes Refactored relatinoships Migrated changes Refactored cqrs commands and queries Refactored mappings
14 lines
328 B
C#
14 lines
328 B
C#
using LiteCharms.Entities.Configuration;
|
|
|
|
namespace LiteCharms.Entities;
|
|
|
|
[EntityTypeConfiguration<QuoteConfiguration, Quote>]
|
|
public class Quote : Models.Quote
|
|
{
|
|
public virtual Customer? Customer { get; set; }
|
|
|
|
public virtual ShoppingCart? ShoppingCart { get; set; }
|
|
|
|
public virtual Order? Order { get; set; }
|
|
}
|