RhSolutions-AddIn/RhSolutions.AddIn/Services/ICurrencyClient.cs

10 lines
185 B
C#
Raw Normal View History

using Newtonsoft.Json;
using System.Threading.Tasks;
namespace RhSolutions.Services;
public interface ICurrencyClient
{
2023-06-09 14:49:20 +03:00
public Task<decimal?> GetExchangeRate(DateTime date);
}