Esempio n. 1
0
        public ActionResult Index()
        {
            var model = new MediaViewModel
            {
                Images = _imageService.Get(),
                Fonts  = _fontService.Get()
            };

            return(View(model));
        }
Esempio n. 2
0
        public ActionResult Index()
        {
            var model = new ThemeViewModel
            {
                Themes = _themeService.Get(),
                Fonts  = _fontService.Get()
            };

            return(View(model));
        }