public StoreProductController(IProductCore product, IBrandCore brand, IAttributeCore attribute, ISpecificationCore specifications)
 {
     _product        = product;
     this._brand     = brand;
     _attribute      = attribute;
     _specifications = specifications;
 }
Пример #2
0
        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);
        }
 public SpecificationController(ISpecificationCore specification, ICatalogCore catalog)
 {
     _specification = specification;
     _catalog       = catalog;
 }