This commit is contained in:
MahanCh
2025-07-22 09:39:31 +03:30
parent 9ab4670d68
commit 767022d0b8
2 changed files with 2 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ public interface IPaymentGateway
public class PaymentGatewayResponse
{
[JsonPropertyName("status")]
public string Status { get; set; }
public string Status { get; set; }
[JsonPropertyName("code")]
public int? ErrorCode { get; set; }

View File

@@ -75,7 +75,7 @@ public class GeneralController : GeneralBaseController
var verifyCommand = new VerifyPaymentGateWayRequest()
{
Amount = transaction.Amount,
Amount = transaction.Amount/10,
TransactionId = transid
};
var verifyRes =await _paymentGateway.Verify(verifyCommand, cancellationToken);