Files
Ai/TrafagSalesExporter/Services/ICurrencyExchangeRateService.cs
2026-04-17 07:08:04 +02:00

8 lines
238 B
C#

namespace TrafagSalesExporter.Services;
public interface ICurrencyExchangeRateService
{
decimal? ResolveRate(string fromCurrency, string toCurrency, DateTime? effectiveDate);
string NormalizeCurrencyCode(string? currencyCode);
}