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