summaryrefslogtreecommitdiff
path: root/Services/ICurrencyClient.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Services/ICurrencyClient.cs')
-rw-r--r--Services/ICurrencyClient.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Services/ICurrencyClient.cs b/Services/ICurrencyClient.cs
new file mode 100644
index 0000000..1e10473
--- /dev/null
+++ b/Services/ICurrencyClient.cs
@@ -0,0 +1,6 @@
+namespace ExcelAddIn.Services;
+
+public interface ICurrencyClient
+{
+ public Task<decimal?> GetCurrencyCourse(DateTime date);
+}