Esempio n. 1
0
 public WebAppResultFinder(IWoxContextService woxContextService, IWebAppService webAppService, IHelperService helperService, IApplicationInformationService applicationInformationService, ISystemWebAppService systemWebAppService) : base(woxContextService)
 {
     WebAppService = webAppService;
     HelperService = helperService;
     ApplicationInformationService = applicationInformationService;
     SystemWebAppService           = systemWebAppService;
 }
Esempio n. 2
0
 public Application(
     IWebAppService webAppService,
     IConfigurationRoot config,
     ILogger <Application> logger
     )
 {
     this.webAppService = webAppService;
     this.logger        = logger;
     this.config        = config;
 }
Esempio n. 3
0
 public ChatController(IWebAppService WebAppService)
 {
     this.WebAppService = WebAppService;
 }
Esempio n. 4
0
 public HomeController(IWebAppService WebAppService)
 {
     this.WebAppService = WebAppService;
 }
Esempio n. 5
0
 public HomeController(MyCustomService customService, IWebAppService webAppService)
 {
     this.customService = customService;
     this.webAppService = webAppService;
 }