ProyectoGrupal/dolibarr-bff/DoliMiddlewareApi/Services/Notifications/INotificationService.cs

7 lines
189 B
C#

namespace DoliMiddlewareApi.Services.Notifications;
public interface INotificationService
{
Task NotifyInvoiceStatusChangedAsync(int invoiceId, string invoiceRef, string newStatus);
}