Blog.Services.Implementation.PostsService.GetMorePopularPosts C# (CSharp) 메소드

GetMorePopularPosts() 공개 메소드

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

            return posts;
        }