public function ScheduleGetFacilitiesById($facility_item)
 {
     // $facility_item : IdType(integer) or this Array
     $this->CheckAndSetHeader(__FUNCTION__);
     $reg_args["facility_id"] = $this->getRegularArgs($facility_item, __FUNCTION__);
     $this->encodeString($reg_args);
     $results = parent::ScheduleGetFacilitiesById($reg_args);
     $this->methodClose();
     return $this->decodeString($results->facility);
     // if array give, return array, an id give return item
 }