Package com.dream.dto.article

Examples of com.dream.dto.article.ArticleViewDTO


    @Override
    public List<ArticleViewDTO> loadCurrentUserArticles(String currentUserGuid) {
        List<Article> articles = articleDao.findCurrentUserArticles(currentUserGuid);
        List<ArticleViewDTO> articleDTOs = new ArrayList<ArticleViewDTO>();
        for (Article article : articles) {
            ArticleViewDTO articleDTO = new ArticleViewDTO(article);
            articleDTOs.add(articleDTO);
        }
        return articleDTOs;
    }
View Full Code Here

TOP

Related Classes of com.dream.dto.article.ArticleViewDTO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.