Example #1
0
 public ProductController(
     IProductManufacturerService productManufacturerService,
     IProductService productService,
     IUserService userService,
     LogService logService)
 {
     _productManufacturerService = productManufacturerService;
     _productService             = productService;
     _userService = userService;
     _logService  = logService;
 }
Example #2
0
 public ProductController(
     IProductTypeService productTypeService,
     IProductManufacturerService productManufacturerService,
     ITaxCategoryService taxCategoryService,
     IProductService productService,
     IUserService userService,
     IProductStatusService productStatusService,
     LogService logService)
 {
     _productTypeService         = productTypeService;
     _productManufacturerService = productManufacturerService;
     _taxCategoryService         = taxCategoryService;
     _productService             = productService;
     _userService          = userService;
     _logService           = logService;
     _productStatusService = productStatusService;
 }