Exemplo n.º 1
0
 public HomeController(
     IArticlesService articlesService,
     IBooksService booksService,
     IVideosService videosService,
     IDownloadMaterialsService downloadsService)
 {
     this.articlesService  = articlesService;
     this.booksService     = booksService;
     this.videosService    = videosService;
     this.downloadsService = downloadsService;
 }
 public DownloadsController(IDownloadMaterialsService downloadsService, IHostingEnvironment hostingEnvironment)
 {
     this.downloadsService   = downloadsService;
     this.hostingEnvironment = hostingEnvironment;
 }