Esempio n. 1
0
        public List <ArticleModel> GetAll()
        {
            ArticleData         data   = new ArticleData(_config);
            List <ArticleModel> output = data.GetAll();

            return(output);
        }
Esempio n. 2
0
 public IEnumerable <ArticleViewModel> GetAll()
 {
     return(articleData.GetAll());
 }