Blog.Services.Helpers.Wcf.CommunityResource.GetMoreJoinedByUser C# (CSharp) 메소드

GetMoreJoinedByUser() 공개 메소드

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