7 lines
122 B
C#
7 lines
122 B
C#
namespace TrafagSalesExporter.Services;
|
|
|
|
public interface IConsolidatedExportService
|
|
{
|
|
Task<string?> ExportAsync();
|
|
}
|