10 lines
185 B
C#
10 lines
185 B
C#
using Newtonsoft.Json;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RhSolutions.Services;
|
|
|
|
public interface ICurrencyClient
|
|
{
|
|
public Task<decimal?> GetExchangeRate(DateTime date);
|
|
}
|