コード例 #1
0
 public ActionResult CreateCategory(PostCategory category)
 {
     return(View(_postService.CreateCategory(category.Name)
         ? "~/Views/Admin/CreatePost.cshtml"
         : "~/Views/Admin/PostsView.cshtml"));
 }