Blog.Services.Implementation.PostContentsService.GetByPostId C# (CSharp) 메소드

GetByPostId() 공개 메소드

public GetByPostId ( int postId ) : List
postId int
리턴 List
        public List<PostContent> GetByPostId(int postId)
        {
            return _postContentsLogic.GetByPostId(postId);
        }