예제 #1
0
파일: OcrBLL.cs 프로젝트: LucasDiogo96/OCR
        public static void ProcessFile(Document document)
        {
            try
            {
                ResponseOCR response = LibraryBLL.InitializeOCR(document);

                CompareBLL.ShowExtractedTests(response);
            }
            catch (Exception)
            {
                throw;
            }
        }
예제 #2
0
파일: OcrBLL.cs 프로젝트: LucasDiogo96/OCR
        public static void Process(List <Document> documents)
        {
            try
            {
                foreach (Document document in documents)
                {
                    ResponseOCR response = LibraryBLL.InitializeOCR(document);

                    CompareBLL.ShowExtractedTests(response);
                }
            }
            catch (Exception)
            {
                throw;
            }
        }