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