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

GetMoreRecentPosts() public méthode

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

            return posts;
        }