Пример #1
0
        public static void ProcessFile(Document document)
        {
            try
            {
                ResponseOCR response = LibraryBLL.InitializeOCR(document);

                CompareBLL.ShowExtractedTests(response);
            }
            catch (Exception)
            {
                throw;
            }
        }
Пример #2
0
        public static void Process(List <Document> documents)
        {
            try
            {
                foreach (Document document in documents)
                {
                    ResponseOCR response = LibraryBLL.InitializeOCR(document);

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