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