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

GetPostsByTagPaged() public method

public GetPostsByTagPaged ( Blog blog, string friendlyTagName, int skip, int take ) : IList
blog Model.Blog
friendlyTagName string
skip int
take int
return IList
		public IList<Model.Post> GetPostsByTagPaged(Blog blog, string friendlyTagName, int skip, int take)
		{
			return postRepository.GetByTag(blog, friendlyTagName, skip, take);
		}