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 DrugAlcoholScreeningController(ITempDrugAlcoholScreeningExtractRepository tempDrugAlcoholScreeningExtractRepository, IDrugAlcoholScreeningExtractRepository DrugAlcoholScreeningExtractRepository, ITempDrugAlcoholScreeningExtractErrorSummaryRepository errorSummaryRepository)
 {
     _tempDrugAlcoholScreeningExtractRepository = tempDrugAlcoholScreeningExtractRepository;
     _drugAlcoholScreeningExtractRepository     = DrugAlcoholScreeningExtractRepository;
     _errorSummaryRepository = errorSummaryRepository;
 }
 public DrugAlcoholScreeningLoader(IDrugAlcoholScreeningExtractRepository DrugAlcoholScreeningExtractRepository, ITempDrugAlcoholScreeningExtractRepository tempDrugAlcoholScreeningExtractRepository, IMediator mediator)
 {
     _DrugAlcoholScreeningExtractRepository     = DrugAlcoholScreeningExtractRepository;
     _tempDrugAlcoholScreeningExtractRepository = tempDrugAlcoholScreeningExtractRepository;
     _mediator = mediator;
 }