diff options
-rw-r--r-- | ExcelFunctions.cs | 2 | ||||
-rw-r--r-- | Services/CurrencyClient.cs | 2 | ||||
-rw-r--r-- | Services/ICurrencyClient.cs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/ExcelFunctions.cs b/ExcelFunctions.cs index adc2323..9394a81 100644 --- a/ExcelFunctions.cs +++ b/ExcelFunctions.cs @@ -14,7 +14,7 @@ public static class ExcelFunctions if (ExcelAsyncUtil.Run(nameof(ExchangeRate), dateField, delegate { - return currencyClient.GetCurrencyCourse(date) + return currencyClient.GetExchangeRate(date) .GetAwaiter() .GetResult() ?? -1m; }) is not decimal requestResult) diff --git a/Services/CurrencyClient.cs b/Services/CurrencyClient.cs index ee6998b..dd7fd2e 100644 --- a/Services/CurrencyClient.cs +++ b/Services/CurrencyClient.cs @@ -14,7 +14,7 @@ public class CurrencyClient : ICurrencyClient _httpClient = httpClient; } - public async Task<decimal?> GetCurrencyCourse(DateTime date) + public async Task<decimal?> GetExchangeRate(DateTime date) { string request = $"{_requestAddress}{date.Date:dd/MM/yyyy}"; diff --git a/Services/ICurrencyClient.cs b/Services/ICurrencyClient.cs index 1e10473..e45a25a 100644 --- a/Services/ICurrencyClient.cs +++ b/Services/ICurrencyClient.cs @@ -2,5 +2,5 @@ namespace ExcelAddIn.Services; public interface ICurrencyClient { - public Task<decimal?> GetCurrencyCourse(DateTime date); + public Task<decimal?> GetExchangeRate(DateTime date); } |