using TrafagSalesExporter.Models; namespace TrafagSalesExporter.Services; public interface ISiteExportService { Task ExportAsync(Site site, Action? updateStatus = null, int? preferredImportYear = null); }