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