Beispiel #1
0
 public PublisherService(IPublisherRepository publisherRepository, IUnitOfWork unitOfWork, IMemoryCache cache, IGitlabService gitlabService)
 {
     _publisherRepository = publisherRepository;
     _unitOfWork          = unitOfWork;
     _cache         = cache;
     _gitlabService = gitlabService;
 }
 public ProjectContentOrchestrator(
     IGitlabService gitlabService,
     IGitService gitService)
 {
     _gitlabService = gitlabService;
     _gitService    = gitService;
 }
 public MainOrchestrator(
     IGitlabService gitlabService,
     IFileSystemRepository fileSystemRepository)
 {
     _gitlabService        = gitlabService;
     _fileSystemRepository = fileSystemRepository;
 }
Beispiel #4
0
 public DatasetService(IDatasetRepository datasetRepository, INotificationService notificationService, IPublisherRepository publisherRepository, ICategoryRepository categoryRepository, ICoordinationRepository coordinationRepository, ITagsRepository tagsRepository, IUnitOfWork unitOfWork, IMemoryCache cache, IGitlabService gitlabService)
 {
     _datasetRepository      = datasetRepository;
     _publisherRepository    = publisherRepository;
     _categoryRepository     = categoryRepository;
     _coordinationRepository = coordinationRepository;
     _tagsRepository         = tagsRepository;
     _unitOfWork             = unitOfWork;
     _notificationService    = notificationService;
     _cache         = cache;
     _gitlabService = gitlabService;
 }
 public CoordinationService(ICoordinationRepository coordinationRepository,
                            INotificationService notificationService,
                            IPublisherRepository publisherRepository,
                            ICategoryRepository categoryRepository,
                            ITagsRepository tagsRepository,
                            IUnitOfWork unitOfWork,
                            IGitlabService gitlabService)
 {
     _coordinationRepository = coordinationRepository;
     _publisherRepository    = publisherRepository;
     _categoryRepository     = categoryRepository;
     _tagsRepository         = tagsRepository;
     _notificationService    = notificationService;
     _unitOfWork             = unitOfWork;
     _gitlabService          = gitlabService;
 }
Beispiel #6
0
 public PGMService(IGitlabService gitlabService, IFileSystemRepository fileSystemRepository)
 {
     //_gitlabService = gitlabService;
     _fileSystemRepository = fileSystemRepository;
 }
Beispiel #7
0
 public GitlabProjectManager(DatabaseService databaseService, IGitlabService gitlabService, IJsonCache jsonCache)
 {
     _databaseService = databaseService;
     _gitlabService   = gitlabService;
     _jsonCache       = jsonCache;
 }
 public AddScripterInfoCommandHandler(IGitlabService gitlab, IMediator mediator, RsPeerContext db)
 {
     _gitlab   = gitlab;
     _mediator = mediator;
     _db       = db;
 }
 public WindowConnectionModel(IGitlabService gitlabService)
 {
     _gitlabService = gitlabService;
 }
Beispiel #10
0
 public QueryGitlabUsersCommandHandler(IGitlabService service)
 {
     _service = service;
 }