Completed payment service implementation

This commit is contained in:
Khwezi Mngoma
2026-05-31 18:42:00 +02:00
parent 0e21ec283d
commit f88cc42a88
7 changed files with 600 additions and 1 deletions
@@ -2,6 +2,24 @@
namespace LiteCharms.Features.MidrandBooks.Products.Models;
public sealed record ReserveStock
{
public required long ProductId { get; set; }
public required long ProductPriceId { get; set; }
public int Reservation { get; set; }
}
public sealed record AllocateStock
{
public required long ProductId { get; set; }
public required long ProductPriceId { get; set; }
public int Allocation { get; set; }
}
public sealed record CreateProduct
{
public required ProductTypes Type { get; set; }