14 lines
324 B
C#
14 lines
324 B
C#
using IRaCIS.Core.Domain.Interfaces;
|
|
using IRaCIS.Core.Domain.Models;
|
|
|
|
namespace IRaCIS.Core.Infra.EFCore.Repository
|
|
{
|
|
public class ExchangeRateRepository : BaseRepository<ExchangeRate>, IExchangeRateRepository
|
|
{
|
|
public ExchangeRateRepository( IRaCISDBContext db) : base( db)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|