11 lines
263 B
C#
Raw Normal View History

2025-05-08 08:55:54 -03:00
using Domain.Entities;
namespace phronCare.UIBlazor.Services.Integrations
{
public interface IExchangeRateService
{
Task<EExchangeRateHistory?> GetByDateAsync(DateOnly date);
Task<EExchangeRateHistory> GetYesterdayRateAsync();
}
}