summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Chebotar <s.chebotar@gmail.com>2023-06-09 14:34:51 +0300
committerSergey Chebotar <s.chebotar@gmail.com>2023-06-09 14:34:51 +0300
commitfd63d004f5f1d74e01f60bfec4fc80fbd6b14e74 (patch)
treeeb37f02e68a31f51f49e19d874d9a3a0c331cf3d
parentc96ac659901e3aa97703fe00856cf14b5630887d (diff)
Method name fix
-rw-r--r--ExcelFunctions.cs2
-rw-r--r--Services/CurrencyClient.cs2
-rw-r--r--Services/ICurrencyClient.cs2
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);
}