using Newtonsoft.Json; using System.Threading.Tasks; namespace RhSolutions.Services; public interface ICurrencyClient { public Task GetExchangeRate(DateTime date); }