Files
meezi/src/Meezi.API/Services/IKdsNotifier.cs
T

11 lines
464 B
C#
Raw Normal View History

2026-05-27 21:33:48 +03:30
using Meezi.API.Models.Orders;
namespace Meezi.API.Services;
public interface IKdsNotifier
{
Task NotifyOrderCreatedAsync(string cafeId, LiveOrderDto order, CancellationToken cancellationToken = default);
Task NotifyOrderStatusChangedAsync(string cafeId, string orderId, Core.Enums.OrderStatus status, CancellationToken cancellationToken = default);
Task NotifyTableStatusChangedAsync(string cafeId, CancellationToken cancellationToken = default);
}