Blog.Services.Implementation.PostsService.GetMorePostsByUser C# (CSharp) Method

GetMorePostsByUser() public method

public GetMorePostsByUser ( int userId, int skip ) : List
userId int
skip int
return List
        public List<Post> GetMorePostsByUser(int userId, int skip)
        {
            var dbPosts = _postsLogic.GetMorePostsByUser(userId, skip);
            var posts = SetPostProperties(dbPosts);

            return posts;
        }