public UpdateCompanyConsumer(
     ICompanyService companyService,
     ICompanyCatalogService companyCatalogService,
     IClientService clientService)
 {
     _companyService        = companyService;
     _companyCatalogService = companyCatalogService;
     _clientService         = clientService;
 }
 public CatalogController(
     ICompanyCatalogService companyCatalogService,
     ICatalogProductItemService catalogProductItemService,
     ICustomerCatalogService customerCatalogService,
     ICatalogHelper catalogHelper,
     IMessageBroker messageBroker)
 {
     _companyCatalogService     = companyCatalogService;
     _catalogProductItemService = catalogProductItemService;
     _customerCatalogService    = customerCatalogService;
     _catalogHelper             = catalogHelper;
     _messageBroker             = messageBroker;
 }
예제 #3
0
 public EmailMessageService(
     IEmailTemplateService emailTemplateService,
     IUserService userService,
     ICompanyService companyService,
     INotificationServiceSettings notificationServiceSettings,
     IConfigurationManager configurationManager,
     ICompanyCatalogService companyCatalogService,
     ICustomSecureControlPanelService customSecureControlPanelService)
 {
     _emailTemplateService            = emailTemplateService;
     _userService                     = userService;
     _companyService                  = companyService;
     _notificationServiceSettings     = notificationServiceSettings;
     _configurationManager            = configurationManager;
     _companyCatalogService           = companyCatalogService;
     _customSecureControlPanelService = customSecureControlPanelService;
 }
예제 #4
0
 public CatalogHelper(ICompanyCatalogService companyCatalogService, IPermissionService permissionService, ICatalogProductItemService catalogProductItemService)
 {
     _companyCatalogService     = companyCatalogService;
     _permissionService         = permissionService;
     _catalogProductItemService = catalogProductItemService;
 }
 public CatalogUtilitiesController(ICompanyCatalogService companyCatalogService, ICatalogHelper catalogHelper)
 {
     _companyCatalogService = companyCatalogService;
     _catalogHelper         = catalogHelper;
 }
 public AssignCatalogActivity(ICompanyCatalogService companyCatalogService)
 {
     _companyCatalogService = companyCatalogService;
 }