Exemplo n.º 1
0
        public IActionResult DeletePost(int PostId)
        {
            _postServices.DeletePosts(PostId);

            var model = _postServices.GetPostList();

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