public GetPatientCounsellingAllCommandHandler(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork ?? throw new ArgumentException(nameof(unitOfWork));
 }
 public HaartProphylaxisService(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork;
 }
 public GetVisitDetailsByServiceAreaNameCommandHandler(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork ?? throw new ArgumentException(nameof(unitOfWork));
 }
예제 #4
0
 public PatientVisitProfileCommandHandler(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork ?? throw new ArgumentException(nameof(unitOfWork));
 }
예제 #5
0
 public GetPreventiveServicesCommandHandler(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork;
 }
예제 #6
0
 public GetPatientIptOutcomeHandler(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork;
 }
예제 #7
0
 public DeletePatientPreventiveServiceCommandHandler(IPmtctUnitOfWork pmtctUnitOfWork)
 {
     _pmtctUnitOfWork = pmtctUnitOfWork ?? throw new ArgumentNullException(nameof(pmtctUnitOfWork));
 }
예제 #8
0
 public GetPatientVitalQueryByVisitDateHandler(IPmtctUnitOfWork pmtctUnitOfWork, IMapper mapper)
 {
     _pmtctUnitOfWork = pmtctUnitOfWork;
     _mapper          = mapper;
 }
 public GetPatientAncAppointmentCommandHandler(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork;
 }
 public AddPNCVisitCommandHandler(IPmtctUnitOfWork unitOfWork, ICommonUnitOfWork commonUnitOfWork)
 {
     _unitOfWork       = unitOfWork;
     _commonUnitOfWork = commonUnitOfWork;
 }
예제 #11
0
 public ReferralAppointmentCommandHandler(IPmtctUnitOfWork unitOfWork, ICommonUnitOfWork commonUnitOfWork)
 {
     _unitOfWork       = unitOfWork ?? throw new ArgumentNullException(nameof(unitOfWork));
     _commonUnitOfWork = commonUnitOfWork ?? throw new ArgumentNullException(nameof(commonUnitOfWork));
 }
 public GetHeiMilestoneCommandHandler(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork;
 }
 public GetPatientEducationCommandHandler(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork;
 }
예제 #14
0
 public HeiServices(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork;
 }
 public GetPatientIptWorkupCommandHandler(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork;
 }
 public EditIptWorkupCommandHandler(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork;
 }
예제 #17
0
 public GetPatientVitalsQueryHandler(IPmtctUnitOfWork pmtctUnitOfWork, IMapper mapper)
 {
     _pmtctUnitOfWork = pmtctUnitOfWork;
     _mapper          = mapper;
 }
 public ClientMonitoringServices(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork;
 }
예제 #19
0
 public ClientMonitoringCommandHandler(ICommonUnitOfWork commonUnitOfWork, IPmtctUnitOfWork unitOfWork)
 {
     _commonUnitOfWork = commonUnitOfWork ?? throw new ArgumentNullException(nameof(commonUnitOfWork));
     _unitOfWork       = unitOfWork ?? throw new ArgumentNullException(nameof(unitOfWork));
 }
 public GetPatientInitialProfileCommandHandler(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork;
 }
 public ReferralAppointmentService(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork;
 }
예제 #22
0
 public HEIEncounterService(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork;
 }
예제 #23
0
 public PatientEducationExaminationCommandHandler(ICommonUnitOfWork commonUnitOfWork, IPmtctUnitOfWork unitOfWork)
 {
     _commonUnitOfWork = commonUnitOfWork ?? throw new ArgumentNullException(nameof(commonUnitOfWork));
     _unitOfWork       = unitOfWork ?? throw new ArgumentNullException(nameof(unitOfWork));
 }
예제 #24
0
 public AddPatientIcfActionCommandHandler(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork;
 }
예제 #25
0
 public EditHeiProfileCommandHandler(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork;
 }
 public EditVisitDetailsCommandHandler(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork ?? throw new ArgumentException(nameof(unitOfWork));
 }
 public DeleteBaselineAncCommandHandler(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork ?? throw new ArgumentException(nameof(unitOfWork));
 }
예제 #28
0
 public PatientEducationExaminationService(IPmtctUnitOfWork unitOfWork, ICommonUnitOfWork commonUnitOfWork)
 {
     _unitOfWork       = unitOfWork;
     _commonUnitOfWork = commonUnitOfWork;
 }
예제 #29
0
 public GetCurrentVisitDetailsCommandHandler(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork;
 }
예제 #30
0
 public DeletePatientEducationCommandHandler(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork ?? throw new ArgumentNullException(nameof(unitOfWork));
 }