public ActionResult Index(string id) { var viewModel = new ProfilesIndexViewModel { Theme = _themeSettingsService.GetTheme(id), Profiles = _themeSettingsService.GetProfiles(id).ToList() }; return(View(viewModel)); }