public CategoryProductController(
     ICategoryProductAppService categoryProductAppService,
     IManufacturerAppService manufacturerAppService)
 {
     _categoryProductAppService = categoryProductAppService;
     _manufacturerAppService    = manufacturerAppService;
 }
 public AdminCategoryProductController(ICategoryProductAppService categoryProductAppService)
 {
     _categoryProductAppService = categoryProductAppService;
 }