Esempio n. 1
0
 public TestStepForImage(IReadOnlyList <ICloudOCRService> ocrServices,
                         IComputer computer,
                         ITestStep action,
                         ILogger logger,
                         IEngineConfig config,
                         IOpenCVSUtils openCVService)
     : base(ocrServices, config, computer, logger, openCVService)
 {
     _step = action;
 }
Esempio n. 2
0
 public TestStepForBase(IReadOnlyList <ICloudOCRService> ocrServices,
                        IEngineConfig config,
                        IComputer computer,
                        ILogger logger,
                        IOpenCVSUtils openCVService)
 {
     OCRServices   = ocrServices;
     _engineConfig = config;
     Computer      = computer;
     Logger        = logger;
     OpenCVService = openCVService;
 }