public SpecificationListRepository(AppDbContext dbContext) : base(dbContext,
                                                                   new BaseDALMapper <ComponentTypeSpecification, ComponentTypeComponentTypeSpecificationFull>())
 {
     _mapper = new ComponentTypeSpecificationMapper();
 }
 public SpecificationListService(IAppUnitOfWork unitOfWork) : base(unitOfWork,
                                                                   new BaseBLLMapper <DAL.App.DTO.ComponentTypeComponentTypeSpecificationFull, ComponentTypeSpecificationFull>(),
                                                                   unitOfWork.SpecificationLists)
 {
     _mapper = new SpecificationListMapper();
 }