diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2023-06-09 07:27:43 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2023-06-09 07:27:43 +0300 |
commit | c96ac659901e3aa97703fe00856cf14b5630887d (patch) | |
tree | 01319906063c647152763f1e1e4be0b5d0d4ce9c /Services/ICurrencyClient.cs |
Initial
Diffstat (limited to 'Services/ICurrencyClient.cs')
-rw-r--r-- | Services/ICurrencyClient.cs | 6 |
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); +} |