public CustomAttributeGroupController(
     IProductAttributeRepository productAttributeRepository,
     ICustomAttributeGroupOptionsRepository customAttributeGroupOptionsRepository)
 {
     productAttributeRepo            = productAttributeRepository;
     customAttributeGroupOptionsRepo = customAttributeGroupOptionsRepository;
 }
Пример #2
0
 public SubcategoryController(ICategoryRepository categoryRepository,
                              ISubcategoryRepository subcategoryRepository,
                              IProductRepository productRepository,
                              IProductAttributeRepository productAttributeRepository,
                              IAttributeGroupRepository attributeGroupRepository,
                              ISubcategoryAttributeGroup subcategoryAttributeGroupRepository,
                              ICustomAttributeGroupOptionsRepository customAttributeGroupRepository)
 {
     categoryRepo                  = categoryRepository;
     subcategoryRepo               = subcategoryRepository;
     productRepo                   = productRepository;
     productAttributeRepo          = productAttributeRepository;
     attributeGroupRepo            = attributeGroupRepository;
     subcategoryAttributeGroupRepo = subcategoryAttributeGroupRepository;
     customAttributeGroupRepo      = customAttributeGroupRepository;
 }