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