/**
  * Facility Get All Master Info
  *
  * @param:  none
  * 
  */
 public function FacilityMasterInfoFetchAll()
 {
     $client = new SoapClient($this->wsdl, $this->connection);
     $response = $client->FacilityMasterInfoFetchAll();
     $responsearray = json_decode(json_encode($response), true);
     return $responsearray;
 }