예제 #1
0
 public TagsController(ITagsInfoService tagsInfoService)
 {
     _tagsInfoService = tagsInfoService;
 }
예제 #2
0
 public ArticleController(IArticleInfoService articleInfoService, ICategoryInfoService categoryInfoService, ITagsInfoService tagsInfoService)
 {
     _articleInfoService  = articleInfoService;
     _categoryInfoService = categoryInfoService;
     _tagsInfoService     = tagsInfoService;
 }