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.
11 lines
455 B
C#
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);
|
|
}
|