public function remove(Area $item)
 {
     $this->transaction->requestTransaction();
     try {
         $item->remove($this->conn);
     } catch (Exception $exception) {
         $this->transaction->requestRollback();
         throw $exception;
     }
 }