コード例 #1
0
        public ActionResult Create()
        {
            Theme theme = new Theme();

            theme.AddMissingTranslations();
            ViewBag.ParentId = new SelectList(_themeService.GetThemes(), "Id", "Name");
            return(View(theme));
        }