public ArticlesController(ArticlesServices articles, CategoriesServices categories, TagsServices tags)
 {
     this.articles   = articles;
     this.categories = categories;
     this.tags       = tags;
 }
Esempio n. 2
0
 public TagsController(TagsServices tags)
 {
     this.tags = tags;
 }