コード例 #1
0
ファイル: HomeController.cs プロジェクト: yunusaslanhan/CMS
        public IActionResult DeletePost(int PostId)
        {
            _postServices.DeletePosts(PostId);

            var model = _postServices.GetPostList();

            return(PartialView("ListPostPartial", model));
        }