summaryrefslogtreecommitdiff
path: root/Services/CurrencyClient.cs
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 /Services/CurrencyClient.cs
parentc96ac659901e3aa97703fe00856cf14b5630887d (diff)
Method name fix
Diffstat (limited to 'Services/CurrencyClient.cs')
-rw-r--r--Services/CurrencyClient.cs2
1 files changed, 1 insertions, 1 deletions
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}";