Пример #1
0
 public CategoryInfoController(IOrchardServices services, ICategoryInfoService categoryServer)
 {
     _services       = services;
     _categoryServer = categoryServer;
 }
Пример #2
0
 public ArticleController(IArticleInfoService articleInfoService, ICategoryInfoService categoryInfoService, ITagsInfoService tagsInfoService)
 {
     _articleInfoService  = articleInfoService;
     _categoryInfoService = categoryInfoService;
     _tagsInfoService     = tagsInfoService;
 }
Пример #3
0
 public CategoryController(ICategoryInfoService categoryInfoService)
 {
     _categoryInfoService = categoryInfoService;
 }