public TemplateProvider(IHostingEnvironment hostingEnvironment, ISiteUrlDetectionService siteUrlDetectionService, IAppVersionService appVersionService) { this._appVersionService = appVersionService; this._fileProvider = hostingEnvironment.ContentRootFileProvider; this._baseUrl = siteUrlDetectionService.GetSiteUrl(); }
public SiteUrlDetectionMiddleware(ISiteUrlDetectionService siteUrlDetectionService, RequestDelegate next) { this._siteUrlDetectionService = siteUrlDetectionService; this._next = next; }
public WebUrlGenerator(ISiteUrlDetectionService siteUrlDetectionService) { this._siteUrlDetectionService = siteUrlDetectionService; }