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