public ProductsController
 (
     IProductService productService,
     ITypeService typeService,
     ISubtypeService subtypeService,
     ISizeService sizeService,
     ITradeMarkService tradeMarkService,
     IMapper automapper
 )
 {
     _productService   = productService;
     _typeService      = typeService;
     _subtypeService   = subtypeService;
     _sizeService      = sizeService;
     _tradeMarkService = tradeMarkService;
     _automapper       = automapper;
 }
 public TradeMarksController(ITradeMarkService tradeMarkService, IMapper automapper)
 {
     _tradeMarkService = tradeMarkService;
     _automapper       = automapper;
 }