BlogSharp.Core.Impl.Services.Post.PostService.GetPostById C# (CSharp) 메소드

GetPostById() 공개 메소드

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