Beispiel #1
0
 public GetTestStatisticsResult GetTestStatistics(int testId, int groupId)
 {
     try
     {
         return(_testClient.GetTestStatistics(testId, groupId));
     }
     catch (CommunicationException)
     {
         _testClient = _factory.CreateChannel();
         return(_testClient.GetTestStatistics(testId, groupId));
     }
 }