Exemplo n.º 1
0
        public CategoryModel(Category category)
        {
            this.Category = category;
            var articlesApi = new ArticlesApi();

            Articles = articlesApi.ArticlesGet(category: new List <string> {
                category.Key
            });
        }