Esempio n. 1
0
 public void SetUp()
 {
     _loader    = TestInitializer.ServiceProvider.GetService <IPatientLaboratoryLoader>();
     _extractor = TestInitializer.ServiceProvider.GetService <IPatientLaboratorySourceExtractor>();
     _extract   = _extracts.First(x => x.Name.IsSameAs("PatientLabExtract"));
     _count     = _extractor.Extract(_extract, _protocol).Result;
 }
Esempio n. 2
0
 public ExtractPatientLaboratoryHandler(IPatientLaboratorySourceExtractor patientLaboratorySourceExtractor, IExtractValidator extractValidator, IPatientLaboratoryLoader patientLaboratoryLoader, IClearDwhExtracts clearDwhExtracts)
 {
     _patientLaboratorySourceExtractor = patientLaboratorySourceExtractor;
     _extractValidator        = extractValidator;
     _patientLaboratoryLoader = patientLaboratoryLoader;
     _clearDwhExtracts        = clearDwhExtracts;
 }
Esempio n. 3
0
 public void SetUp()
 {
     _extractor = TestInitializer.ServiceProvider.GetService <IPatientLaboratorySourceExtractor>();
 }