public GetTeamCityUrlResponse Get(GetTeamCityUrl request)
 {
     return(new GetTeamCityUrlResponse
     {
         //Strip app/rest out of configured TC api url.
         Url = AppSettings.GetString("ServerApiBaseUrl").Replace("app/rest", "")
     });
 }
 public GetTeamCityUrlResponse Get(GetTeamCityUrl request)
 {
     return new GetTeamCityUrlResponse
     {
         //Strip app/rest out of configured TC api url.
         Url = AppSettings.GetString("ServerApiBaseUrl").Replace("app/rest", "")
     };
 }