Exemple #1
0
 public ProductController(
     IProductService productServiceV2,
     ICustomerCatalogService customerCatalogService)
 {
     _productServiceV2       = productServiceV2;
     _customerCatalogService = customerCatalogService;
 }
 public CatalogController(
     ICompanyCatalogService companyCatalogService,
     ICatalogProductItemService catalogProductItemService,
     ICustomerCatalogService customerCatalogService,
     ICatalogHelper catalogHelper,
     IMessageBroker messageBroker)
 {
     _companyCatalogService     = companyCatalogService;
     _catalogProductItemService = catalogProductItemService;
     _customerCatalogService    = customerCatalogService;
     _catalogHelper             = catalogHelper;
     _messageBroker             = messageBroker;
 }