Blog.Services.Helpers.Wcf.TagsResource.GetByPostId C# (CSharp) Méthode

GetByPostId() public méthode

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