11 lines
263 B
C#
11 lines
263 B
C#
|
|
using Domain.Entities;
|
|||
|
|
|
|||
|
|
namespace phronCare.UIBlazor.Services.Integrations
|
|||
|
|
{
|
|||
|
|
public interface IExchangeRateService
|
|||
|
|
{
|
|||
|
|
Task<EExchangeRateHistory?> GetByDateAsync(DateOnly date);
|
|||
|
|
Task<EExchangeRateHistory> GetYesterdayRateAsync();
|
|||
|
|
}
|
|||
|
|
}
|