All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m25s
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();
|
|
}
|
|
}
|