This commit is contained in:
2026-04-17 07:08:04 +02:00
parent ca91af9682
commit 0d3bd47f7a
34 changed files with 17503 additions and 160 deletions
@@ -0,0 +1,13 @@
namespace TrafagSalesExporter.Services;
public interface IExchangeRateImportService
{
Task<ExchangeRateImportResult> RefreshEcbRatesAsync(CancellationToken cancellationToken = default);
}
public sealed class ExchangeRateImportResult
{
public int ImportedCount { get; init; }
public DateTime RateDate { get; init; }
public string SourceName { get; init; } = string.Empty;
}