BlogSharp.Web.Controllers.PostController.List C# (CSharp) Method

List() public method

public List ( int page ) : System.Web.Mvc.ActionResult
page int
return System.Web.Mvc.ActionResult
        public ActionResult List(int page)
        {
            var posts = postService.GetPostsByBlogPaged(CurrentBlog, 0, CurrentBlog.Configuration.PageSize);
            return View(posts);
        }