コード例 #1
0
 public CatalogController(
     ICompanyCatalogService companyCatalogService,
     ICatalogProductItemService catalogProductItemService,
     ICustomerCatalogService customerCatalogService,
     ICatalogHelper catalogHelper,
     IMessageBroker messageBroker)
 {
     _companyCatalogService     = companyCatalogService;
     _catalogProductItemService = catalogProductItemService;
     _customerCatalogService    = customerCatalogService;
     _catalogHelper             = catalogHelper;
     _messageBroker             = messageBroker;
 }
コード例 #2
0
 public CatalogHelper(ICompanyCatalogService companyCatalogService, IPermissionService permissionService, ICatalogProductItemService catalogProductItemService)
 {
     _companyCatalogService     = companyCatalogService;
     _permissionService         = permissionService;
     _catalogProductItemService = catalogProductItemService;
 }
コード例 #3
0
 public CompanyCatalogService(CldpDbContext dbContext, ICatalogProductItemService catalogProductItemService, ICatalogUtilities catalogUtilities)
 {
     _dbContext = dbContext;
     _catalogProductItemService = catalogProductItemService;
     _catalogUtilities          = catalogUtilities;
 }