/**
  * Brightree ID Patient API Call
  *
  * @param string $id 
  * 
  */
 public function PatientFetchByBrightreeID($id)
 {
     $client = new SoapClient($this->wsdl, $this->connection);
     $response = $client->PatientFetchByBrightreeID(array("BrightreeID" => $id));
     $responsearray = json_decode(json_encode($response->PatientFetchByBrightreeIDResult->Items->Patient), true);
     return $responsearray;
 }