toArray(); $params = [ ':periodId' => $periodId, ':serviceId' => $data['serviceId'], ]; try { $statement = $this->connection->prepare( "INSERT INTO {$this->table} (`periodId`, `serviceId`) VALUES (:periodId, :serviceId)" ); $res = $statement->execute($params); if (!$res) { throw new QueryExecutionException('Unable to add data in ' . __CLASS__); } } catch (\Exception $e) { throw new QueryExecutionException('Unable to add data in ' . __CLASS__); } return $this->connection->lastInsertId(); } /** * @param PeriodService $entity * @param int $id * * @return int * @throws QueryExecutionException */ public function update($entity, $id) { $data = $entity->toArray(); $params = [ ':id' => $id, ':serviceId' => $data['serviceId'], ]; try { $statement = $this->connection->prepare( "UPDATE {$this->table} SET `serviceId` = :serviceId WHERE id = :id" ); $res = $statement->execute($params); if (!$res) { throw new QueryExecutionException('Unable to save data in ' . __CLASS__); } return $res; } catch (\Exception $e) { throw new QueryExecutionException('Unable to save data in ' . __CLASS__); } } }