public ComponentSpecificationService(IAppUnitOfWork unitOfWork) : base(unitOfWork,
                                                                        new BaseBLLMapper <DAL.App.DTO.ComponentSpecificationFull, ComponentSpecificationFull>(),
                                                                        unitOfWork.ComponentSpecifications)
 {
     _mapper = new ComponentSpecificationMapper();
 }
Exemple #2
0
 public ComponentSpecificationRepository(AppDbContext dbContext) : base(dbContext,
                                                                        new BaseDALMapper <ComponentSpecification, ComponentSpecificationFull>())
 {
     _mapper = new ComponentSpecificationMapper();
 }