Blog.Services.Helpers.Wcf.PostsResource.GetMoreRecentPosts C# (CSharp) Méthode

GetMoreRecentPosts() public méthode

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