public IActionResult PostView(int id)
        {
            var post = _service.GetPost(id);

            return(View("PostView", post));
        }