コード例 #1
0
ファイル: SectionsController.cs プロジェクト: kosski/QAgora
 public ActionResult Create(Section section)
 {
     if (ModelState.IsValid)
     {
         respository.AddPanel(section, User.Identity.GetUserId());
         return(RedirectToAction("Index"));
     }
     return(View(section));
 }