public ThemeController(
			IThemeRegistry themeRegistry, 
			IThemeVariablesService themeVarService,
			IThemeContext themeContext,
			IStoreContext storeContext)
		{
            this._themeRegistry = themeRegistry;
            this._themeVarService = themeVarService;
			this._themeContext = themeContext;
			this._storeContext = storeContext;
		}
Exemple #2
0
 public ThemeController(
     IThemeRegistry themeRegistry,
     IThemeVariablesService themeVarService,
     IThemeContext themeContext,
     IStoreContext storeContext)
 {
     this._themeRegistry   = themeRegistry;
     this._themeVarService = themeVarService;
     this._themeContext    = themeContext;
     this._storeContext    = storeContext;
 }
Exemple #3
0
 public ThemeController(
     IThemeRegistry themeRegistry,
     IThemeVariablesService themeVarService,
     IThemeContext themeContext,
     IAssetCache assetCache)
 {
     _themeVarService = themeVarService;
     _themeRegistry   = themeRegistry;
     _themeContext    = themeContext;
     _assetCache      = assetCache;
 }
        public ThemeController(
            ISettingService settingService,
            IThemeRegistry themeRegistry,
            IThemeVariablesService themeVarService,
            IStoreService storeService,
            IPackageManager packageManager,
            ICommonServices services)
        {
            this._settingService  = settingService;
            this._themeVarService = themeVarService;
            this._themeRegistry   = themeRegistry;
            this._storeService    = storeService;
            this._packageManager  = packageManager;
            this._services        = services;

            this.T = NullLocalizer.Instance;
        }
        public ThemeController(
            ISettingService settingService, 
			IThemeRegistry themeRegistry,
            IThemeVariablesService themeVarService,
			IStoreService storeService,
			IPackageManager packageManager,
			ICommonServices services)
		{
            this._settingService = settingService;
            this._themeVarService = themeVarService;
            this._themeRegistry = themeRegistry;
			this._storeService = storeService;
			this._packageManager = packageManager;
			this._services = services;

			this.T = NullLocalizer.Instance;
		}
Exemple #6
0
 public ThemeController(
     ISettingService settingService,
     IThemeRegistry themeRegistry,
     IThemeVariablesService themeVarService,
     IStoreService storeService,
     IPackageManager packageManager,
     ICommonServices services,
     IThemeContext themeContext,
     Lazy <IThemeFileResolver> themeFileResolver)
 {
     this._settingService    = settingService;
     this._themeVarService   = themeVarService;
     this._themeRegistry     = themeRegistry;
     this._storeService      = storeService;
     this._packageManager    = packageManager;
     this._services          = services;
     this._themeContext      = themeContext;
     this._themeFileResolver = themeFileResolver;
 }
Exemple #7
0
 public ThemeController(
     ISettingService settingService,
     IThemeRegistry themeRegistry,
     IThemeVariablesService themeVarService,
     IPackageManager packageManager,
     ICommonServices services,
     IThemeContext themeContext,
     IAssetCache assetCache,
     Lazy <IThemeFileResolver> themeFileResolver)
 {
     _settingService    = settingService;
     _themeVarService   = themeVarService;
     _themeRegistry     = themeRegistry;
     _packageManager    = packageManager;
     _services          = services;
     _themeContext      = themeContext;
     _assetCache        = assetCache;
     _themeFileResolver = themeFileResolver;
 }
        public ThemeController(
            ISettingService settingService, 
			IThemeRegistry themeRegistry,
            IThemeVariablesService themeVarService,
			IStoreService storeService,
			IPackageManager packageManager,
			ICommonServices services,
			IThemeContext themeContext,
			Lazy<IThemeFileResolver> themeFileResolver)
        {
            this._settingService = settingService;
            this._themeVarService = themeVarService;
            this._themeRegistry = themeRegistry;
            this._storeService = storeService;
            this._packageManager = packageManager;
            this._services = services;
            this._themeContext = themeContext;
            this._themeFileResolver = themeFileResolver;
        }
Exemple #9
0
        public ThemeController(
            ISettingService settingService,
            IThemeRegistry themeRegistry,
            IThemeVariablesService themeVarService,
            ISiteService siteService,
            ICommonServices services,
            IThemeContext themeContext,
            Lazy <IThemeFileResolver> themeFileResolver)
        {
            this._settingService  = settingService;
            this._themeVarService = themeVarService;
            this._themeRegistry   = themeRegistry;
            this._siteService     = siteService;

            this._services          = services;
            this._themeContext      = themeContext;
            this._themeFileResolver = themeFileResolver;

            this.T = NullLocalizer.Instance;
        }
        public ThemeController(IThemeRegistry themeRegistry, IThemeVariablesService themeVarService)
		{
            //this._permissionService = permissionService;
            this._themeRegistry = themeRegistry;
            this._themeVarService = themeVarService;
		}
 public ThemeController(IThemeRegistry themeRegistry, IThemeVariablesService themeVarService)
 {
     //this._permissionService = permissionService;
     this._themeRegistry   = themeRegistry;
     this._themeVarService = themeVarService;
 }