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