Why: baseline pending admin config edge handlers and runtime assets before security wave. What: add set service window 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 Restaurant.Admin.Bff.Contracts.Requests;
|
|
using Restaurant.Admin.Bff.Contracts.Responses;
|
|
|
|
namespace Restaurant.Admin.Bff.Application.Adapters;
|
|
|
|
public interface IRestaurantAdminServiceClient
|
|
{
|
|
Task<GetRestaurantAdminConfigResponse> FetchAsync(GetRestaurantAdminConfigRequest request, CancellationToken cancellationToken);
|
|
Task<SetServiceWindowResponse> SetServiceWindowAsync(SetServiceWindowRequest request, CancellationToken cancellationToken);
|
|
}
|