Blog.Services.Implementation.PostsService.GetMorePopularPosts C# (CSharp) Méthode

GetMorePopularPosts() public méthode

public GetMorePopularPosts ( int postsCount, int skip ) : List
postsCount int
skip int
Résultat List
        public List<Post> GetMorePopularPosts(int postsCount, int skip)
        {
            var dbPosts = _postsLogic.GetMorePopularPosts(postsCount, skip);
            var posts = SetPostProperties(dbPosts);

            return posts;
        }