コード例 #1
0
 public FileProcessor(
     IBitbucketApiService apiService,
     IRepository<BitbucketRepositoryDataRecord> repository,
     IContentManager contentManager,
     IRepositoryFileService fileService,
     IEncryptionService encryptionService)
 {
     _apiService = apiService;
     _repository = repository;
     _contentManager = contentManager;
     _fileService = fileService;
     _encryptionService = encryptionService;
 }
コード例 #2
0
 public BitbucketService(
     IBitbucketApiService apiService,
     IRepository<BitbucketRepositoryDataRecord> repository,
     IJobManager jobManager,
     IFileProcessor fileProcessor,
     IContentManager contentManager,
     IEncryptionService encryptionService)
 {
     _apiService = apiService;
     _jobManager = jobManager;
     _repository = repository;
     _fileProcessor = fileProcessor;
     _contentManager = contentManager;
     _encryptionService = encryptionService;
 }