Beispiel #1
0
 public BatchStatus GetBatchStatus(int batchId)
 {
     try
     {
         return(_batchManager.GetBatchStatus(batchId));
     }
     catch (KeyNotFoundException)
     {
         throw new HttpResponseException(HttpStatusCode.NotFound);
     }
 }