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