public GithubService(ICache cachingService, IGithubDataRepository dataRepository)
 {
     _cachingService = cachingService;
     _dataRepository = dataRepository;
 }
Beispiel #2
0
 public DataImportService(IGithubDataRepository githubDataRepository, IDataRepository dataRepository, IOptions <ImportOptions> options)
 {
     _githubDataRepository = githubDataRepository;
     _dataRepository       = dataRepository;
     _options = options;
 }