/**
  * {@inheritdoc}
  */
 public function getPatientByMRN($patientMrn)
 {
     if (!($patient = $this->repository->findOneByMrn($patientMrn))) {
         throw new PatientNotFoundException('MRN', $patientMrn);
     }
     return $patient;
 }