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

GetPopularPosts() public method

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