public DoctorService(IDoctorRepository doctorRepository, IDoctorGradeService doctorGradeService, IBusinessDayService businessDayService, IArticleService articleService) { _doctorRepository = doctorRepository; _doctorGradeService = doctorGradeService; _businessDayService = businessDayService; _articleService = articleService; }
public DoctorGradeController(IDoctorGradeService doctorGradeService) { _doctorGradeService = doctorGradeService; }
public PatientService(IPatientRepository _patientRepo, IPatientFileService _servicePatientFile, IDoctorGradeService doctorGradeService) { _doctorGradeService = doctorGradeService; _patientRepository = _patientRepo; _patientFileService = _servicePatientFile; }