コード例 #1
0
 public DoctorService(IDoctorRepository doctorRepository, IDoctorGradeService doctorGradeService, IBusinessDayService businessDayService, IArticleService articleService)
 {
     _doctorRepository   = doctorRepository;
     _doctorGradeService = doctorGradeService;
     _businessDayService = businessDayService;
     _articleService     = articleService;
 }
コード例 #2
0
 public DoctorGradeController(IDoctorGradeService doctorGradeService)
 {
     _doctorGradeService = doctorGradeService;
 }
コード例 #3
0
 public PatientService(IPatientRepository _patientRepo, IPatientFileService _servicePatientFile, IDoctorGradeService doctorGradeService)
 {
     _doctorGradeService = doctorGradeService;
     _patientRepository  = _patientRepo;
     _patientFileService = _servicePatientFile;
 }