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