Blog.Services.Helpers.Wcf.PostsResource.GetMorePopularPosts C# (CSharp) Method

GetMorePopularPosts() public method

public GetMorePopularPosts ( int postsCount, int skip ) : List
postsCount int
skip int
return List
        public List<Post> GetMorePopularPosts(int postsCount, int skip)
        {
            using (var svc = new ServiceProxyHelper<IPostsService>("PostsService"))
            {
                return svc.Proxy.GetMorePopularPosts(postsCount, skip);
            }
        }