コード例 #1
0
ファイル: SectionsController.cs プロジェクト: kosski/QAgora
        public ActionResult CreateSectionPanel(SectionPanel section)
        {
            if (ModelState.IsValid)
            {
                respository.AddSectionPanel(section);
                return(RedirectToAction("Index"));
            }

            return(View(section));
        }