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