Blog.Services.Helpers.Wcf.ViewCountResource.Get C# (CSharp) Method

Get() public method

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