/// <summary>
 /// Initializes a new instance of the <see cref="HandleInstallAndUpgradeComponent"/> class.
 /// </summary>
 /// <param name="config">
 /// The config.
 /// </param>
 /// <param name="sectionService">
 /// The section service.
 /// </param>
 /// <param name="userService">
 /// The user service.
 /// </param>
 /// <param name="logger">
 /// The logger.
 /// </param>
 public HandleInstallAndUpgradeComponent(IFormulateConfig config, ISectionService sectionService, IUserService userService, ILogger logger)
 {
     Config         = config;
     SectionService = sectionService;
     UserService    = userService;
     Logger         = logger;
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DefaultConfigurationManager"/> class.
 /// </summary>
 /// <param name="config">
 /// The Formulate config.
 /// </param>
 public DefaultConfigurationManager(IFormulateConfig config)
 {
     Config = config;
 }