BlogSharp.Core.Impl.Services.Post.PostService.GetPostsByBlogPaged C# (CSharp) Méthode

GetPostsByBlogPaged() public méthode

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