public StoreProductController(IProductCore product, IBrandCore brand, IAttributeCore attribute, ISpecificationCore specifications)
 {
     _product        = product;
     this._brand     = brand;
     _attribute      = attribute;
     _specifications = specifications;
 }
        public CategoryController(IBrandCore brand, IAttributeCore attribute, ISpecificationCore specification, ICloudStorage cloudStorage, ICatalogCore catalog, IMapper mapper, IUnitOfWork db)
        {
            _brand         = brand;
            _attribute     = attribute;
            _specification = specification;

            _catalog      = catalog;
            _cloudStorage = cloudStorage;
            _seo          = new SeoCoreCatalog(mapper, db);
        }
Beispiel #3
0
 public AttributeController(ICatalogCore catalog, IAttributeCore attribute)
 {
     _catalog   = catalog;
     _attribute = attribute;
 }