9 lines
182 B
C#
9 lines
182 B
C#
using TrafagSalesExporter.Models;
|
|
|
|
namespace TrafagSalesExporter.Services;
|
|
|
|
public interface IConsolidatedExportService
|
|
{
|
|
Task<string?> ExportAsync(List<SalesRecord> records);
|
|
}
|