public IActionResult DeletePost(int PostId) { _postServices.DeletePosts(PostId); var model = _postServices.GetPostList(); return(PartialView("ListPostPartial", model)); }