waiter-floor-bff/src/Waiter.Floor.Bff.Application/Handlers/ISubmitFloorOrderHandler.cs
José René White Enciso 5c887dee87 feat(waiter-floor): add order edge flow
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.
2026-03-08 15:00:08 -06:00

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