zentraler export

This commit is contained in:
2026-04-15 14:47:32 +02:00
parent 7891dfb3dd
commit 264e64bbf5
13 changed files with 610 additions and 154 deletions
@@ -0,0 +1,8 @@
using TrafagSalesExporter.Models;
namespace TrafagSalesExporter.Services;
public interface IManualExcelImportService
{
Task<List<SalesRecord>> ReadSalesRecordsAsync(string filePath, Site site);
}