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

GetPostsByCommunity() public method

public GetPostsByCommunity ( int communityId, int threshold = 10, int skip = 10 ) : List
communityId int
threshold int
skip int
return List
        public List<Post> GetPostsByCommunity(int communityId, int threshold = 10, int skip = 10)
        {
            var dbPosts = _postsLogic.GetPostsByCommunity(communityId, threshold, skip);
            var posts = SetPostProperties(dbPosts);

            return posts;
        }