Example #1
0
        public ThemeSettingsViewModel(
            IThemeService themeService,
            IThemeViewModelFactory themeViewModelFactory)
        {
            _themeService          = themeService;
            _themeViewModelFactory = themeViewModelFactory;

            _themes = new ObservableCollection <ThemeViewModel>();
        }
Example #2
0
 public ThemeProvider(IThemeViewModelFactory themeViewModelFactory, IThemePersistenceService themePersistenceService)
 {
     _themeViewModelFactory = themeViewModelFactory;
     _themePersistenceService = themePersistenceService;
 }
Example #3
0
 public ThemeProvider(IThemeViewModelFactory themeViewModelFactory, IThemePersistenceService themePersistenceService)
 {
     _themeViewModelFactory   = themeViewModelFactory;
     _themePersistenceService = themePersistenceService;
 }