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

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

            return(View(model));
        }