Exemple #1
0
 public TestTypeRepository(AppDbContext dbContext) : base(dbContext, new BaseDALMapper <TestType, TestTypeFull>())
 {
     _mapper = new TestTypeMapper();
 }
Exemple #2
0
 public TestTypeService(IAppUnitOfWork unitOfWork) : base(unitOfWork,
                                                          new BaseBLLMapper <DAL.App.DTO.TestTypeFull, TestTypeFull>(), unitOfWork.TestTypes)
 {
     _mapper = new TestTypeMapper();
 }