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,7 @@
namespace TrafagSalesExporter.Services;
public interface ICurrencyExchangeRateService
{
decimal? ResolveRate(string fromCurrency, string toCurrency, DateTime? effectiveDate);
string NormalizeCurrencyCode(string? currencyCode);
}