83f51c6a23
Added shopping cart and items Added quotes Refactored relatinoships Migrated changes Refactored cqrs commands and queries Refactored mappings
9 lines
216 B
C#
9 lines
216 B
C#
namespace LiteCharms.Entities;
|
|
|
|
public class ShoppingCartItem : Models.ShoppingCartItem
|
|
{
|
|
public virtual ShoppingCart? ShoppingCart { get; set; }
|
|
|
|
public virtual ProductPrice? ProductPrice { get; set; }
|
|
}
|