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