Created Order, Refund, Shipping

This commit is contained in:
Khwezi Mngoma
2026-05-26 08:24:38 +02:00
parent 20b747e89c
commit 70860efcfb
19 changed files with 320 additions and 11 deletions
@@ -0,0 +1,13 @@
using LiteCharms.Features.MidrandBooks.Customers.Entities;
namespace LiteCharms.Features.MidrandBooks.Orders.Entities;
[EntityTypeConfiguration<ShippingConfiguration, Shipping>]
public class Shipping : Models.Shipping
{
public virtual Order? Order { get; set; }
public virtual Address? Address { get; set; }
public virtual ShippingProvider? ShippingProvider { get; set; }
}