public CustomSecureControlPanelController(
     IMessageBroker messageBroker,
     ICustomSecureControlPanelService customSecureControlPanelService,
     ICloudPlusApiSettings cloudPlusApiSettings)
 {
     _messageBroker = messageBroker;
     _customSecureControlPanelService = customSecureControlPanelService;
     _cloudPlusApiSettings            = cloudPlusApiSettings;
 }
Example #2
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;
 }