public ProductClassController(IProductClassService productClassService, IWebHostEnvironment webHostEnvironment) { _productClassService = productClassService; _webHost = webHostEnvironment; }
public ProductClassController(IProductClassService service, IMapper mapper) : base() { this._service = service; this._mapper = mapper; }