public function __construct($rowId = null)
 {
     parent::__construct(self::TABLE, self::ID_COLUMN, null, $rowId);
 }
 /**
  * Výchozí konstruktor ala @see KT_Crud = DB table (row)
  *
  * @author Martin Hlaváč
  * @link http://www.ktstudio.cz
  *
  * @param string $table
  * @param string $primaryKeyColumn
  * @param string $tablePrefix
  * @param integer $rowId
  */
 function __construct($table, $primaryKeyColumn, $tablePrefix = null, $rowId = null)
 {
     parent::__construct($table, $primaryKeyColumn, $tablePrefix, $rowId);
 }