Ejemplo n.º 1
0
 public TagsController(ITagsInfoService tagsInfoService)
 {
     _tagsInfoService = tagsInfoService;
 }
Ejemplo n.º 2
0
 public ArticleController(IArticleInfoService articleInfoService, ICategoryInfoService categoryInfoService, ITagsInfoService tagsInfoService)
 {
     _articleInfoService  = articleInfoService;
     _categoryInfoService = categoryInfoService;
     _tagsInfoService     = tagsInfoService;
 }