示例#1
0
文件: DoctorService.cs 项目: x3r/AMS
 public DoctorService(DoctorRepository doctorRepository, UserRepository userRepository, AddressRepository addressRepository, ScheduleRepository scheduleRepository, AppointmentRepository appointmentRepository, WaitingRepository waitingRepository)
 {
     _doctorRepository = doctorRepository;
     _userRepository = userRepository;
     _addressRepository = addressRepository;
     _scheduleRepository = scheduleRepository;
     _appointmentRepository = appointmentRepository;
     _waitingRepository = waitingRepository;
 }
示例#2
0
文件: PatientService.cs 项目: x3r/AMS
 public PatientService(PatientRepository patientRepository, AppointmentRepository appointmentRepository, WaitingRepository waitingRepository)
 {
     _patientRepository = patientRepository;
     _appointmentRepository = appointmentRepository;
     _waitingRepository = waitingRepository;
 }