public TrendingController(ITrendingService trendingService) { _trendingService = trendingService; }
public GifManager(ITrendingService trendingService, ISearchService searchService, IDatabaseRepository databaseRepository) { this.trendingService = trendingService; this.searchService = searchService; this.databaseRepository = databaseRepository; }
public NewTopicTweetMessageHandler(ITrendingService trendingService) { _trendingService = trendingService; }
public HomeViewModel(ITrendingService trendingService) { _trendingService = trendingService; //TrendingRoots = new ObservableCollection<TrendingModel.RootObject>(); }