phronCare/Core/Interfaces/IExchangeRateDom.cs
Leandro Hernan Rojas e1bd50d4d6
Some checks failed
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Failing after 56s
Add ExchangeRate Function BCRA
2025-05-08 03:09:52 -03:00

14 lines
344 B
C#

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);
}
}