public UnitOfWork(JooleDatabaseEntities2 context, CategoryRepo categoryRepo, SubCategoryRepo subCategoryRepo, PropertyRepo propertyRepo, ProductRepo productRepo, TechSpecRepo techSpecRepo, TechSpecFilterRepo techSpecFilterRepo) { this.context = context; this.categoryRepo = categoryRepo; this.subCategoryRepo = subCategoryRepo; this.productRepo = productRepo; this.propertyRepo = propertyRepo; this.techSpecFilterRepo = techSpecFilterRepo; this.techSpecRepo = techSpecRepo; }