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