public BrandCategoryController(ILogger <BrandCategoryController> logger, IBrandCategoryService brandCategoryService)
 {
     _logger = logger;
     _brandCategoryService = brandCategoryService;
 }
예제 #2
0
 public BrandCategoryController(IBrandCategoryService brandCategoryService, IMapper mapper)
 {
     _brandCategoryService = brandCategoryService;
     _mapper = mapper;
 }