2023-05-15 06:33:24 +03:00
|
|
|
|
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);
|
2023-05-15 06:33:24 +03:00
|
|
|
|
}
|