Represents a type for the Posts grouped under this
예제 #1
0
 public ActionResult Create(Category category)
 {
     if (ModelState.IsValid)
     {
         CategoryServices.AddEntity(category);
         return RedirectToAction("Index");
     }
     return View(category);
 }