Beispiel #1
0
 public List <Therapy> ViewAllTherapyByPatient(string patientJmbg)
 {
     return(therapyRepository.GetTherapyByPatient(patientJmbg));
 }
Beispiel #2
0
 public IEnumerable <Therapy> GetTherapyByPatient(Patient patient)
 => _therapyRepository.GetTherapyByPatient(patient);