Blog.Services.Helpers.Wcf.TagsResource.GetByPostId C# (CSharp) 메소드

GetByPostId() 공개 메소드

public GetByPostId ( int postId ) : List
postId int
리턴 List
        public List<Tag> GetByPostId(int postId)
        {
            using (var svc = new ServiceProxyHelper<ITagsService>("TagsService"))
            {
                return svc.Proxy.GetByPostId(postId);
            }
        }