refactor: remove admin user id from manual payment command
Build and Deploy to Kubernetes / build-and-deploy (push) Successful in 2m13s

This commit is contained in:
masoodafar-web
2025-12-12 10:22:09 +03:30
parent 094846ce8b
commit 2ae6034fbb
5 changed files with 58 additions and 64 deletions
@@ -67,8 +67,7 @@ public class ManualPaymentService : ManualPaymentContract.ManualPaymentContractB
UserId = request.UserId,
Amount = request.Amount,
ReferenceNumber = request.ReferenceNumber,
Description = request.Description,
AdminUserId = request.AdminUserId
Description = request.Description
};
var result = await _sender.Send(command, context.CancellationToken);