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