Esempio n. 1
0
 public BestStoriesController(IBestStoriesService bestStoriesService)
 {
     this.bestStoriesService = bestStoriesService ?? throw new ArgumentNullException(nameof(bestStoriesService));
 }
 public BestStoriesController(IBestStoriesService bestStoriesService) => _bestStoriesService = bestStoriesService;