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