public function gbRemove($GbImageId)
 {
     $this->Post = (int) $GbImageId;
     $ReadGb = new WsPostsGallery();
     $ReadGb->setGallery_id($this->Post);
     $result = $ReadGb->Execute()->find();
     if ($result) {
         $Imagem = '../uploads/' . $result->gallery_image;
         $this->deletaImagem($Imagem);
         $deleta = $ReadGb->Execute()->delete();
         if ($deleta) {
             $this->Error = ["A Imagem foi removida com sucesso da galeria!", WS_ACCEPT];
             $this->Result = true;
         }
     }
 }