コード例 #1
0
 public List <Therapy> ViewAllTherapyByPatient(string patientJmbg)
 {
     return(therapyRepository.GetTherapyByPatient(patientJmbg));
 }
コード例 #2
0
ファイル: TherapyService.cs プロジェクト: milica1612/psw
 public IEnumerable <Therapy> GetTherapyByPatient(Patient patient)
 => _therapyRepository.GetTherapyByPatient(patient);