Blog.Services.Helpers.Wcf.PostsResource.GetPostsByCommunity C# (CSharp) Метод

GetPostsByCommunity() публичный Метод

public GetPostsByCommunity ( int communityId, int threshold = 10, int skip = 10 ) : List
communityId int
threshold int
skip int
Результат List
        public List<Post> GetPostsByCommunity(int communityId, int threshold = 10, int skip = 10)
        {
            using (var svc = new ServiceProxyHelper<IPostsService>("PostsService"))
            {
                return svc.Proxy.GetPostsByCommunity(communityId, threshold, skip);
            }
        }