8 lines
238 B
C#
8 lines
238 B
C#
namespace TrafagSalesExporter.Services;
|
|
|
|
public interface ICurrencyExchangeRateService
|
|
{
|
|
decimal? ResolveRate(string fromCurrency, string toCurrency, DateTime? effectiveDate);
|
|
string NormalizeCurrencyCode(string? currencyCode);
|
|
}
|