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

GetPostById() public method

public GetPostById ( Blog blog, int id ) : Post
blog Model.Blog
id int
return Model.Post
		public Model.Post GetPostById(Blog blog, int id)
		{
			return postRepository.GetPostById(blog, id);
		}