|
using IRaCIS.Core.Domain.Interfaces;
|
|
using IRaCIS.Core.Domain.Models;
|
|
|
|
namespace IRaCIS.Core.Infra.EFCore.Repository
|
|
{
|
|
public class QATemplateRepository : BaseRepository<QATemplate>, IQATemplateRepository
|
|
{
|
|
public QATemplateRepository(IRaCISDBContext db)
|
|
: base(db)
|
|
{
|
|
}
|
|
}
|
|
} |