public DwhExtractSentServcie(IPatientExtractRepository patientExtractRepository, IPatientArtExtractRepository artExtractRepository, IPatientBaselinesExtractRepository baselinesExtractRepository, IPatientLaboratoryExtractRepository laboratoryExtractRepository, IPatientPharmacyExtractRepository pharmacyExtractRepository, IPatientStatusExtractRepository statusExtractRepository, IPatientVisitExtractRepository visitExtractRepository, IPatientAdverseEventExtractRepository adverseEventExtractRepository, IAllergiesChronicIllnessExtractRepository allergiesChronicIllnessExtractRepository, IIptExtractRepository iptExtractRepository, IDepressionScreeningExtractRepository depressionScreeningExtractRepository, IContactListingExtractRepository contactListingExtractRepository, IGbvScreeningExtractRepository gbvScreeningExtractRepository, IEnhancedAdherenceCounsellingExtractRepository enhancedAdherenceCounsellingExtractRepository, IDrugAlcoholScreeningExtractRepository drugAlcoholScreeningExtractRepository, IOvcExtractRepository ovcExtractRepository, IOtzExtractRepository otzExtractRepository, ICovidExtractRepository covidExtractRepository, IDefaulterTracingExtractRepository defaulterTracingExtractRepository)
        {
            _patientExtractRepository      = patientExtractRepository;
            _artExtractRepository          = artExtractRepository;
            _baselinesExtractRepository    = baselinesExtractRepository;
            _laboratoryExtractRepository   = laboratoryExtractRepository;
            _pharmacyExtractRepository     = pharmacyExtractRepository;
            _statusExtractRepository       = statusExtractRepository;
            _visitExtractRepository        = visitExtractRepository;
            _adverseEventExtractRepository = adverseEventExtractRepository;

            _allergiesChronicIllnessExtractRepository = allergiesChronicIllnessExtractRepository;
            _iptExtractRepository = iptExtractRepository;
            _depressionScreeningExtractRepository          = depressionScreeningExtractRepository;
            _contactListingExtractRepository               = contactListingExtractRepository;
            _gbvScreeningExtractRepository                 = gbvScreeningExtractRepository;
            _enhancedAdherenceCounsellingExtractRepository = enhancedAdherenceCounsellingExtractRepository;
            _drugAlcoholScreeningExtractRepository         = drugAlcoholScreeningExtractRepository;
            _ovcExtractRepository = ovcExtractRepository;
            _otzExtractRepository = otzExtractRepository;

            _covidExtractRepository            = covidExtractRepository;
            _defaulterTracingExtractRepository = defaulterTracingExtractRepository;
        }
 public DepressionScreeningLoader(IDepressionScreeningExtractRepository DepressionScreeningExtractRepository, ITempDepressionScreeningExtractRepository tempDepressionScreeningExtractRepository, IMediator mediator)
 {
     _DepressionScreeningExtractRepository     = DepressionScreeningExtractRepository;
     _tempDepressionScreeningExtractRepository = tempDepressionScreeningExtractRepository;
     _mediator = mediator;
 }
Esempio n. 3
0
 public DepressionScreeningController(ITempDepressionScreeningExtractRepository tempDepressionScreeningExtractRepository, IDepressionScreeningExtractRepository DepressionScreeningExtractRepository, ITempDepressionScreeningExtractErrorSummaryRepository errorSummaryRepository)
 {
     _tempDepressionScreeningExtractRepository = tempDepressionScreeningExtractRepository;
     _depressionScreeningExtractRepository     = DepressionScreeningExtractRepository;
     _errorSummaryRepository = errorSummaryRepository;
 }