Some checks failed
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Failing after 56s
12 lines
259 B
C#
12 lines
259 B
C#
using Domain.Entities;
|
|
|
|
namespace Models.Interfaces
|
|
{
|
|
public interface IPhOHExchangeRateHistory
|
|
{
|
|
Task<EExchangeRateHistory> AddAsync(EExchangeRateHistory entity);
|
|
Task<EExchangeRateHistory?> GetByDateAsync(DateOnly date);
|
|
|
|
}
|
|
}
|