Exemple #1
0
 public InstallationCheckingPnSettingsService(ILogger <InstallationCheckingPnSettingsService> logger,
                                              IInstallationCheckingLocalizationService localizationService,
                                              InstallationCheckingPnDbContext dbContext,
                                              IPluginDbOptions <InstallationCheckingBaseSettings> options,
                                              IHttpContextAccessor httpContextAccessor)
 {
     _logger              = logger;
     _dbContext           = dbContext;
     _options             = options;
     _httpContextAccessor = httpContextAccessor;
     _localizationService = localizationService;
 }
Exemple #2
0
 public InstallationsService(
     InstallationCheckingPnDbContext installationCheckingContext,
     CustomersPnDbAnySql customersContext,
     IPluginDbOptions <InstallationCheckingBaseSettings> options,
     IInstallationCheckingLocalizationService localizationService,
     IUserService userService,
     IEFormCoreService coreHelper
     )
 {
     _installationCheckingContext = installationCheckingContext;
     _customersContext            = customersContext;
     _options             = options;
     _localizationService = localizationService;
     _userService         = userService;
     _coreHelper          = coreHelper;
 }