Add Reward To checkout Completed

This commit is contained in:
gozareshgir
2026-01-24 18:57:53 +03:30
parent 69f4819bf6
commit c97ea5356f
7 changed files with 15 additions and 4 deletions

View File

@@ -4,7 +4,7 @@ namespace Company.Domain.CheckoutAgg.ValueObjects;
public class CheckoutReward
{
public CheckoutReward(string amount, double amountDouble, string grantDateFa, DateTime grantDateGr, string description, string title)
public CheckoutReward(string amount, double amountDouble, string grantDateFa, DateTime grantDateGr, string description, string title, long entityId)
{
Amount = amount;
AmountDouble = amountDouble;
@@ -12,6 +12,7 @@ public class CheckoutReward
GrantDateGr = grantDateGr;
Description = description;
Title = title;
EntityId = entityId;
}
/// <summary>