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);
        }