Why: baseline pending 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.
10 lines
302 B
C#
10 lines
302 B
C#
using Waiter.Floor.Bff.Contracts.Requests;
|
|
using Waiter.Floor.Bff.Contracts.Responses;
|
|
|
|
namespace Waiter.Floor.Bff.Application.Handlers;
|
|
|
|
public interface ISubmitFloorOrderHandler
|
|
{
|
|
Task<SubmitFloorOrderResponse> HandleAsync(SubmitFloorOrderRequest request, CancellationToken cancellationToken);
|
|
}
|