public function __construct($point1 = NULL, $point2 = NULL)
 {
     parent::__construct('geo.intersects');
     $this->points($point1, $point2);
 }
 public function __construct($property = NULL, ODataQueryFilterInterface $argument = NULL)
 {
     parent::__construct('all', $property);
     $this->argument = $argument;
 }
 public function __construct($type, $property = NULL)
 {
     parent::__construct('isof', $property);
     $this->type = $type;
 }