Exemplo n.º 1
0
 public TopArticlesController(ITopArticlesService TopArticlesService)
 {
     this.topArticlesService = TopArticlesService;
 }
Exemplo n.º 2
0
        public HomeController(ILogger<HomeController> logger, ITopArticlesService TopArticlesService)
        {
            _logger = logger;
            this.topArticlesService = TopArticlesService;

        }