public BundlingOptionsConfigurer(
     IApplicationContext appContext,
     IAssetFileProvider fileProvider,
     IOptionsMonitorCache <BundlingOptions> optionsCache,
     Work <ThemeSettings> themeSettings)
 {
     _appContext    = appContext;
     _fileProvider  = fileProvider;
     _optionsCache  = optionsCache;
     _themeSettings = themeSettings;
 }
示例#2
0
 public DefaultThemeVariableService(
     SmartDbContext db,
     IThemeRegistry themeRegistry,
     IRequestCache requestCache,
     IEventPublisher eventPublisher,
     IAssetFileProvider assetFileProvider,
     IHttpContextAccessor httpContextAccessor)
 {
     _db                  = db;
     _themeRegistry       = themeRegistry;
     _requestCache        = requestCache;
     _eventPublisher      = eventPublisher;
     _assetFileProvider   = assetFileProvider;
     _httpContextAccessor = httpContextAccessor;
 }