customer-orders-bff/src/Customer.Orders.Bff.Application/Adapters/ICustomerOrdersServiceClient.cs
José René White Enciso a235d264bf feat(customer-orders): add order edge flow
Why: baseline pending customer order edge handlers and runtime assets before security wave.

What: add submit order 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
455 B
C#

using Customer.Orders.Bff.Contracts.Requests;
using Customer.Orders.Bff.Contracts.Responses;
namespace Customer.Orders.Bff.Application.Adapters;
public interface ICustomerOrdersServiceClient
{
Task<GetCustomerOrderStatusResponse> FetchAsync(GetCustomerOrderStatusRequest request, CancellationToken cancellationToken);
Task<SubmitCustomerOrderResponse> SubmitOrderAsync(SubmitCustomerOrderRequest request, CancellationToken cancellationToken);
}