BlogSharp.Core.Impl.Services.Post.PostService.GetPostsByBlogPaged C# (CSharp) Method

GetPostsByBlogPaged() public method

public GetPostsByBlogPaged ( Blog blog, int skip, int take ) : IList
blog Model.Blog
skip int
take int
return IList
		public IList<Model.Post> GetPostsByBlogPaged(Blog blog, int skip, int take)
		{
			return postRepository.GetByBlog(blog, skip, take);
		}