Blog.Services.Helpers.Wcf.ViewCountResource.Get C# (CSharp) Méthode

Get() public méthode

public Get ( int postId ) : List
postId int
Résultat List
        public List<ViewCount> Get(int postId)
        {
            using (var svc = new ServiceProxyHelper<IViewCountService>("ViewCountService"))
            {
                return svc.Proxy.Get(postId);
            }
        }
ViewCountResource