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

GetPostsByBlog() public method

public GetPostsByBlog ( Blog blog ) : IList
blog Model.Blog
return IList
		public IList<Model.Post> GetPostsByBlog(Blog blog)
		{
			return postRepository.GetByBlog(blog);
		}