Blog.Services.Helpers.Wcf.CommunityResource.GetMoreJoinedByUser C# (CSharp) Method

GetMoreJoinedByUser() public method

public GetMoreJoinedByUser ( int userId, int skip ) : List
userId int
skip int
return List
        public List<Community> GetMoreJoinedByUser(int userId, int skip)
        {
            using (var svc = new ServiceProxyHelper<ICommunityService>("CommunityService"))
            {
                return svc.Proxy.GetMoreJoinedByUser(userId, skip);
            }
        }