Represents a type for the Posts grouped under this
コード例 #1
0
ファイル: CategoryController.cs プロジェクト: yagopv/BgEngine
 public ActionResult Create(Category category)
 {
     if (ModelState.IsValid)
     {
         CategoryServices.AddEntity(category);
         return RedirectToAction("Index");
     }
     return View(category);
 }