public function getPropertyListAjax()
 {
     $property_details = $this->property_service->getPropertyList($this->user_id);
     return $this->sendJson($this->property_service->api_error_message, $property_details, 'array');
 }
 public function testGetPropertyList()
 {
     $property_details = $this->property_service->getPropertyList(1);
     print_r($property_details);
 }