Why: baseline pending payment edge handlers and runtime assets before security wave. What: add capture payment contracts/handlers, service adapter updates, and docs/docker assets. Rule: keep technical intent and align repository workflow.
11 lines
462 B
C#
11 lines
462 B
C#
using Pos.Transactions.Bff.Contracts.Requests;
|
|
using Pos.Transactions.Bff.Contracts.Responses;
|
|
|
|
namespace Pos.Transactions.Bff.Application.Adapters;
|
|
|
|
public interface IPosTransactionsServiceClient
|
|
{
|
|
Task<GetPosTransactionSummaryResponse> FetchAsync(GetPosTransactionSummaryRequest request, CancellationToken cancellationToken);
|
|
Task<CapturePosPaymentResponse> CapturePaymentAsync(CapturePosPaymentRequest request, CancellationToken cancellationToken);
|
|
}
|