public JsonResult MoreBlogPosts(int oldestBlogPostId) { var posts = _blogService.GetOlderPosts(oldestBlogPostId); return(Json(posts)); }