Retructured solution

This commit is contained in:
Khwezi Mngoma
2026-05-13 20:06:24 +02:00
parent 26075cd9a7
commit a42c51d7b2
231 changed files with 1618 additions and 1408 deletions
@@ -0,0 +1,25 @@
namespace LiteCharms.Features.ShoppingCarts.Commands;
public class CreateShoppingCartCommand : IRequest<Result<Guid>>
{
public Guid? CustomerId { get; set; }
public Guid? OrderId { get; set; }
public Guid? QuoteId { get; set; }
private CreateShoppingCartCommand(Guid customerId, Guid? orderId = null, Guid? quoteId = null)
{
CustomerId = customerId;
OrderId = orderId;
QuoteId = quoteId;
}
public static CreateShoppingCartCommand Create(Guid customerId, Guid? orderId = null, Guid? quoteId = null)
{
if (customerId == Guid.Empty)
throw new ArgumentException($"Customer ID is required", nameof(customerId));
return new(customerId, orderId, quoteId);
}
}