public void uploadResults() { foreach (KeyValuePair <int, IRecognitionWorker> entry in workers) { IRecognitionWorker worker = entry.Value; worker.uploadResult(); } }
public void doRecognition() { foreach (KeyValuePair <int, IRecognitionWorker> entry in workers) { IRecognitionWorker worker = entry.Value; if (worker.proceedRecord(this.abbyyRs)) { recognizedContent++; } } }