public AngularBootstrapper(
     IAntiforgery antiforgery,
     IHttpContextAccessor httpContextAccessor,
     IStaticResourceReferenceRenderer staticResourceReferenceRenderer,
     IUserContextService userContextService,
     IAdminRouteLibrary adminRouteLibrary,
     IQueryExecutor queryExecutor
     )
 {
     _antiforgery                     = antiforgery;
     _httpContextAccessor             = httpContextAccessor;
     _staticResourceReferenceRenderer = staticResourceReferenceRenderer;
     _userContextService              = userContextService;
     _adminRouteLibrary               = adminRouteLibrary;
     _queryExecutor                   = queryExecutor;
 }
示例#2
0
 public VisualEditorActionResultFactory(
     IStaticResourceReferenceRenderer staticResourceReferenceRenderer,
     IAdminRouteLibrary adminRouteLibrary,
     IPageResponseDataCache pageResponseDataCache,
     IJsonSerializerSettingsFactory jsonSerializerSettingsFactory,
     IRazorViewRenderer razorViewRenderer,
     IResourceLocator resourceLocator,
     IPermissionValidationService permissionValidationService
     )
 {
     _staticResourceReferenceRenderer = staticResourceReferenceRenderer;
     _adminRouteLibrary             = adminRouteLibrary;
     _pageResponseDataCache         = pageResponseDataCache;
     _jsonSerializerSettingsFactory = jsonSerializerSettingsFactory;
     _resourceLocator             = resourceLocator;
     _razorViewRenderer           = razorViewRenderer;
     _permissionValidationService = permissionValidationService;
 }
示例#3
0
 public AngularBootstrapper(
     IAntiforgery antiforgery,
     IHttpContextAccessor httpContextAccessor,
     IStaticResourceReferenceRenderer staticResourceReferenceRenderer,
     IUserContextService userContextService,
     IAdminRouteLibrary adminRouteLibrary,
     IQueryExecutor queryExecutor,
     IHostingEnvironment hostingEnvironment,
     DebugSettings debugSettings
     )
 {
     _antiforgery                     = antiforgery;
     _httpContextAccessor             = httpContextAccessor;
     _staticResourceReferenceRenderer = staticResourceReferenceRenderer;
     _userContextService              = userContextService;
     _adminRouteLibrary               = adminRouteLibrary;
     _queryExecutor                   = queryExecutor;
     _hostingEnvironment              = hostingEnvironment;
     _debugSettings                   = debugSettings;
 }