public EnvironmentDeployedGetter(
     ITfsClient tfsClient,
     IConfigurationRetriever configurationRetriever)
 {
     _tfsClient = tfsClient;
     _configurationRetriever = configurationRetriever;
 }
 public ReleaseEnvironmentsGetter(
     ITfsClient tfsClient,
     IConfigurationRetriever configurationRetriever)
 {
     _tfsClient = tfsClient;
     _configurationRetriever = configurationRetriever;
 }
Пример #3
0
 public HealthCheckPerformer(
     ITfsClient tfsClient,
     IConfigurationRetriever configurationRetriever,
     IMemoryCache memoryCache)
 {
     _tfsClient = tfsClient;
     _configurationRetriever = configurationRetriever;
     _memoryCache            = memoryCache;
 }
Пример #4
0
 public TfsTrelloIntegration(ITfsClient tfsClient, ITrelloClient trelloClient)
 {
     _tfsClient = tfsClient;
     _trelloClient = trelloClient;
 }
Пример #5
0
 public QueryService(ILogger <QueryService> logger, ITfsClient tfsClient)
 {
     _logger    = logger;
     _tfsClient = tfsClient;
 }
Пример #6
0
 public TfsTrelloIntegration(ITfsClient tfsClient, ITrelloClient trelloClient)
 {
     _tfsClient    = tfsClient;
     _trelloClient = trelloClient;
 }
 public void Init()
 {
     _tfsClientFake = A.Fake<ITfsClient>();
     _trelloClientFake = A.Fake<ITrelloClient>();
     _tfsTrelloIntegration = new TfsTrelloIntegration(_tfsClientFake, _trelloClientFake);
 }
Пример #8
0
 public void Init()
 {
     _tfsClientFake        = A.Fake <ITfsClient>();
     _trelloClientFake     = A.Fake <ITrelloClient>();
     _tfsTrelloIntegration = new TfsTrelloIntegration(_tfsClientFake, _trelloClientFake);
 }