restaurant-admin-bff/src/Restaurant.Admin.Bff.Application/Adapters/IRestaurantAdminServiceClient.cs
José René White Enciso 5b4c23b6e9 feat(restaurant-admin): add config edge flow
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.
2026-03-08 15:00:08 -06:00

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