public function GetPrivateCollections()
 {
     if (CommonController::IsAuthentified()) {
         $wSCtrl = new WebServicesController();
         $response = $wSCtrl->Call("Collection", "GET", ["id" => $_SESSION['id']]);
         var_dump($response);
     }
     return null;
 }