/**
  * Save product prices.
  *
  * @param array $priceData
  * @param string $table
  * @return $this
  */
 protected function saveEntityFinish(array $entityData, $table)
 {
     if ($entityData) {
         $tableName = $this->_connection->getTableName($table);
         $entityIn = [];
         foreach ($entityData as $id => $entityRows) {
             foreach ($entityRows as $row) {
                 $entityIn[] = $row;
             }
         }
         if ($entityIn) {
             $this->_connection->insertOnDuplicate($tableName, $entityIn, [self::TITLE, self::TAX]);
         }
     }
     return $this;
 }