Blog.Services.Implementation.CommunityService.GetMoreCreatedByUser C# (CSharp) Method

GetMoreCreatedByUser() public method

public GetMoreCreatedByUser ( int userId, int skip ) : List
userId int
skip int
return List
        public List<Community> GetMoreCreatedByUser(int userId, int skip)
        {
            return _communityLogic.GetMoreCreatedByUser(userId, skip);
        }