Exemple #1
0
 public ExcelManager(IGitLabDataRepository gitLabDataRepository)
 {
     _gitLabDataRepository = gitLabDataRepository;
 }
 public GitLabHandler(IGitLabDataRepository repository, IGitLabProjectRepository gitLabProjectRepository)
 {
     _repository = repository;
     _gitLabProjectRepository = gitLabProjectRepository;
 }
 /// <summary>
 /// Receive rabbitMQ messages
 /// </summary>
 public RabbitService(IGitLabDataRepository gitLabDataRepository, IGitLabProjectHandler gitLabProjectHandler)
 {
     _gitLabDataRepository = gitLabDataRepository;
     _gitLabProjectHandler = gitLabProjectHandler;
 }