public GetPatientCounsellingAllCommandHandler(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork ?? throw new ArgumentException(nameof(unitOfWork));
 }
コード例 #2
0
 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;
 }
コード例 #10
0
 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));
 }
コード例 #12
0
 public GetHeiMilestoneCommandHandler(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork;
 }
コード例 #13
0
 public GetPatientEducationCommandHandler(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork;
 }
コード例 #14
0
 public HeiServices(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork;
 }
コード例 #15
0
 public GetPatientIptWorkupCommandHandler(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork;
 }
コード例 #16
0
 public EditIptWorkupCommandHandler(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork;
 }
コード例 #17
0
 public GetPatientVitalsQueryHandler(IPmtctUnitOfWork pmtctUnitOfWork, IMapper mapper)
 {
     _pmtctUnitOfWork = pmtctUnitOfWork;
     _mapper          = mapper;
 }
コード例 #18
0
 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));
 }
コード例 #20
0
 public GetPatientInitialProfileCommandHandler(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork;
 }
コード例 #21
0
 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;
 }
コード例 #26
0
 public EditVisitDetailsCommandHandler(IPmtctUnitOfWork unitOfWork)
 {
     _unitOfWork = unitOfWork ?? throw new ArgumentException(nameof(unitOfWork));
 }
コード例 #27
0
 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));
 }