16 lines
339 B
C#
16 lines
339 B
C#
using IRaCIS.Core.Domain.Interfaces;
|
|
using IRaCIS.Core.Domain.Models;
|
|
|
|
namespace IRaCIS.Core.Infra.EFCore.Repository
|
|
{
|
|
|
|
public class StudyReviewerRepository : BaseRepository<StudyReviewer>, IStudyReviewerRepository
|
|
{
|
|
public StudyReviewerRepository(IRaCISDBContext db)
|
|
: base(db)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|