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