예제 #1
0
 public PatientLaboratorySourceExtractor(IDwhExtractSourceReader reader, IMediator mediator, ITempPatientLaboratoryExtractRepository extractRepository)
 {
     _reader            = reader;
     _mediator          = mediator;
     _extractRepository = extractRepository;
 }
 public PatientLaboratoryLoader(IPatientLaboratoryExtractRepository patientLaboratoryExtractRepository, ITempPatientLaboratoryExtractRepository tempPatientLaboratoryExtractRepository, IMediator mediator)
 {
     _patientLaboratoryExtractRepository     = patientLaboratoryExtractRepository;
     _tempPatientLaboratoryExtractRepository = tempPatientLaboratoryExtractRepository;
     _mediator = mediator;
 }
예제 #3
0
 public PatientLaboratoryController(ITempPatientLaboratoryExtractRepository tempPatientLaboratoryExtractRepository, IPatientLaboratoryExtractRepository patientLaboratoryExtractRepository, ITempPatientLaboratoryExtractErrorSummaryRepository errorSummaryRepository)
 {
     _tempPatientLaboratoryExtractRepository = tempPatientLaboratoryExtractRepository;
     _patientLaboratoryExtractRepository     = patientLaboratoryExtractRepository;
     _errorSummaryRepository = errorSummaryRepository;
 }
예제 #4
0
 public PatientLaboratoryLoader(IPatientLaboratoryExtractRepository patientLaboratoryExtractRepository, ITempPatientLaboratoryExtractRepository tempPatientLaboratoryExtractRepository)
 {
     _patientLaboratoryExtractRepository     = patientLaboratoryExtractRepository;
     _tempPatientLaboratoryExtractRepository = tempPatientLaboratoryExtractRepository;
 }