Esempio n. 1
0
 private static async Task SendTeamcityBuildNotification(
     TeamCityAggregator teamCityAggregator,
     string buildNumber,
     string buildName,
     string buildResult = "success",
     string branchName  = "awesomeBranch",
     string rootUrl     = "aRootURL")
 => await teamCityAggregator.Handle(makeTeamcityBuildNotification(buildNumber, buildName, buildResult, branchName, rootUrl));
 public TeamCityHipChatConfigureController(ITenantService tenantService, TeamCityAggregator teamCityAggregator)
 {
     _tenantService      = tenantService;
     _teamCityAggregator = teamCityAggregator;
 }