示例#1
0
 public VideosController(
     IVideosService videosService,
     IArticlesCategoriesService articlesCategoriesService)
 {
     this.videosService             = videosService;
     this.articlesCategoriesService = articlesCategoriesService;
 }
示例#2
0
 public ArticlesController(
     IArticlesCategoriesService articlesCategoriesService,
     IArticlesService articlesService,
     UserManager <ApplicationUser> userManager,
     IWebHostEnvironment environment)
 {
     this.articlesCategoriesService = articlesCategoriesService;
     this.articlesService           = articlesService;
     this.userManager = userManager;
     this.environment = environment;
 }