Blog.Services.Implementation.CommunityService.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)
        {
            return _communityLogic.GetMoreJoinedByUser(userId, skip);
        }