12 lines
429 B
C#
12 lines
429 B
C#
|
|
namespace Meezi.Core.Interfaces;
|
||
|
|
|
||
|
|
public interface ISnappfoodClient
|
||
|
|
{
|
||
|
|
Task AcknowledgeOrderAsync(string snappfoodOrderId, CancellationToken cancellationToken = default);
|
||
|
|
Task NotifyOrderDeliveredAsync(string snappfoodOrderId, CancellationToken cancellationToken = default);
|
||
|
|
Task NotifyOrderStatusAsync(
|
||
|
|
string snappfoodOrderId,
|
||
|
|
string status,
|
||
|
|
CancellationToken cancellationToken = default);
|
||
|
|
}
|