/**
  * Patient Get Note By Patient
  *
  * @param:  BrightreeID of the Patient
  * 
  */
 public function PatientNoteFetchByPatient($id)
 {
     $client = new SoapClient($this->wsdl, $this->connection);
     $response = $client->PatientNoteFetchByPatient(array('brightreeID' => $id));
     $responsearray = json_decode(json_encode($response), true);
     return $responsearray;
 }