Esempio n. 1
0
 public AddNewSubcategoryVC(ICategoryRepository categoryRepo, IAttributeGroupRepository attributeGroupRepo, ISubcategoryAttributeGroupRepository subcategoryAttributeGroupRepo)
 {
     _categoryRepo        = categoryRepo;
     _attrGroupRepo       = attributeGroupRepo;
     _subcatAttrGroupRepo = subcategoryAttributeGroupRepo;
 }
Esempio n. 2
0
 public ProductCardBodyTableVC(IProductRepository productRepo, IProductAttributeValueRepository productAttrValRepo, ISubcategoryAttributeGroupRepository subcategoryAttributeGroupRepo)
 {
     _productRepo                   = productRepo;
     _productAttrValRepo            = productAttrValRepo;
     _subcategoryAttributeGroupRepo = subcategoryAttributeGroupRepo;
 }
 public SubcategoryController(ISubcategoryRepository subcategoryRepo, ISubcategoryAttributeGroupRepository subcategoryAttributeGroupRepo)
 {
     _subcategoryRepo          = subcategoryRepo;
     _subcatAttributeGroupRepo = subcategoryAttributeGroupRepo;
 }