Files
Ai/TrafagSalesExporter/Services/IConsolidatedExportService.cs
2026-04-13 14:37:21 +02:00

9 lines
182 B
C#

using TrafagSalesExporter.Models;
namespace TrafagSalesExporter.Services;
public interface IConsolidatedExportService
{
Task<string?> ExportAsync(List<SalesRecord> records);
}