コード例 #1
0
 public ActionResult AddSection(SectionViewModel model)
 {
     model.DateAdded = DateTime.Now;
     service.CreateSection(model.ToBllSection());
     return(RedirectToAction("Index", "Home"));
 }
コード例 #2
0
ファイル: SectionController.cs プロジェクト: KarinaBabak/Blog
 public ActionResult AddSection(SectionViewModel model)
 {
     sectionService.CreateSection(model.ToBllSection());
     return(RedirectToAction("WorkWithSections", "Section"));
 }