public CollectionController(IUserValidationService userValidationService, ICollectionService service, ILogger <ICategoryService> logger, IConfiguredProductService configuredProductService)
 {
     _collectionService        = service;
     _configuredProductService = configuredProductService;
     _logger = new CustomLogger(logger);
     _userValidationService = userValidationService;
 }
Esempio n. 2
0
 public ConfiguredProductController(IUserValidationService userValidationService, IConfiguredProductService configuredProductService, ILogger <ICategoryService> logger, IProductService productService, IMaterialService materialService)
 {
     _configuredProductService = configuredProductService;
     _productService           = productService;
     _materialService          = materialService;
     _logger = new CustomLogger(logger);
     _userValidationService = userValidationService;
 }