Exemplo n.º 1
0
 public SchedulingService(IAppointmentRepository appointmentRepository, 
                         IAppointmentRequestRepository appointmentRequestRepository,
                         IDoctorRepository doctorRepository,
                         IPatientRepository patientRepository)
 {
     _appointmentRepository = appointmentRepository;
     _appointmentRequestRepository = appointmentRequestRepository;
     _doctorRepository = doctorRepository;
     _patientRepository = patientRepository;
 }
 public NotificationManagementService(IDoctorRepository doctorRepository,
                                      IPatientRepository patientRepository,
                                      ITestRepository testRepository,
                                      IAppointmentRequestRepository appointmentRequestRepository,
                                      IReferralRepository referralRepository,
                                      IStaffRepository staffRepository)
 {
     _doctorRepository             = doctorRepository;
     _patientRepository            = patientRepository;
     _testRepository               = testRepository;
     _appointmentRequestRepository = appointmentRequestRepository;
     _referralRepository           = referralRepository;
     _staffRepository              = staffRepository;
 }