BASTA2015Server.ArticlesController.ListArticles C# (CSharp) Method

ListArticles() private method

private ListArticles ( ) : IEnumerable
return IEnumerable
        public IEnumerable<Article> ListArticles()
        {
            // TODO: Call to BL, DAL...

            return database.Values.Select(p => new Article { Id = p.Id, Name = p.Name });
        }