Exemple #1
0
 public string GetDatabasePassword(string databaseName)
 {
     try
     {
         return(_testClient.GetDatabasePassword(databaseName));
     }
     catch (CommunicationException)
     {
         _testClient = _factory.CreateChannel();
         return(_testClient.GetDatabasePassword(databaseName));
     }
 }