13 lines
335 B
C#
13 lines
335 B
C#
using IRaCIS.Core.Domain.Interfaces;
|
|
using IRaCIS.Core.Domain.Models;
|
|
|
|
namespace IRaCIS.Core.Infra.EFCore.Repository
|
|
{
|
|
public class TrialDictionaryRepository : BaseRepository<TrialDictionary>, ITrialDictionaryRepository
|
|
{
|
|
public TrialDictionaryRepository( IRaCISDBContext db) : base( db)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |