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