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

7 lines
189 B
C#
Raw Permalink Normal View History

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