pos-transactions-bff/src/Pos.Transactions.Bff.Application/Adapters/IPosTransactionsServiceClient.cs
José René White Enciso a279607e93 feat(pos-transactions): add payment edge flow
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.
2026-03-08 15:00:08 -06:00

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);
}