Blog.Services.Implementation.PostContentsService.GetByPostId C# (CSharp) Method

GetByPostId() public method

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