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

GetPostsByCommunity() public method

public GetPostsByCommunity ( int communityId, int threshold = 10, int skip = 10 ) : List
communityId int
threshold int
skip int
return 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);
            }
        }