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

            Articles = articlesApi.ArticlesGet(category: new List <string> {
                category.Key
            });
        }
Exemplo n.º 2
0
 public void Init()
 {
     instance = new ArticlesApi();
 }