phronCare/Core/Interfaces/IExchangeRateDom.cs

14 lines
344 B
C#
Raw Normal View History

2025-05-08 03:09:52 -03:00
using Domain.Entities;
namespace Core.Interfaces
{
public interface IExchangeRateDom
{
Task<EExchangeRateHistory> GetYesterdayRateAsync();
/// <summary>
/// Solo lee del histórico; no dispara llamada externa.
/// </summary>
Task<EExchangeRateHistory?> GetByDateAsync(DateOnly date);
}
}