kitchen-ops-bff/src/Kitchen.Ops.Bff.Application/Adapters/IKitchenServiceClient.cs
José René White Enciso c4d903016b feat(kitchen-ops): add priority edge flow
Why: baseline pending kitchen priority edge handlers and runtime assets before security wave.

What: add set-priority 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
441 B
C#

using Kitchen.Ops.Bff.Contracts.Requests;
using Kitchen.Ops.Bff.Contracts.Responses;
namespace Kitchen.Ops.Bff.Application.Adapters;
public interface IKitchenServiceClient
{
Task<GetKitchenOpsBoardResponse> FetchAsync(GetKitchenOpsBoardRequest request, CancellationToken cancellationToken);
Task<SetKitchenOrderPriorityResponse> SetOrderPriorityAsync(SetKitchenOrderPriorityRequest request, CancellationToken cancellationToken);
}