7 lines
189 B
C#
7 lines
189 B
C#
|
|
namespace DoliMiddlewareApi.Services.Notifications;
|
||
|
|
|
||
|
|
public interface INotificationService
|
||
|
|
{
|
||
|
|
Task NotifyInvoiceStatusChangedAsync(int invoiceId, string invoiceRef, string newStatus);
|
||
|
|
}
|