public GetRepositoryListingsToConsider(
     ExistingListingsProvider existingListingsProvider,
     ConstructRepositoryListings constructRepositoryListings,
     ListingsToProcessProvider listingsToProcess)
 {
     _existingListingsProvider    = existingListingsProvider;
     _constructRepositoryListings = constructRepositoryListings;
     _listingsToProcess           = listingsToProcess;
 }
Beispiel #2
0
 public ScraperRun(
     ApiUsagePrinter apiUsagePrinter,
     CleanRemovedPatchers clean,
     ExistingListingsProvider existingListingsProvider,
     GetRepositoryListingsToConsider getRepositoryListingsToConsider,
     ExportListings export)
 {
     _apiUsagePrinter                 = apiUsagePrinter;
     _clean                           = clean;
     _existingListingsProvider        = existingListingsProvider;
     _getRepositoryListingsToConsider = getRepositoryListingsToConsider;
     _export                          = export;
 }