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