Storm\Core\Relational\Row::__construct PHP Метод

__construct() публичный Метод

public __construct ( Storm\Core\Relational\ITable $Table, array $RowData = [] )
$Table Storm\Core\Relational\ITable
$RowData array
    public function __construct(ITable $Table, array $RowData = [])
    {
        parent::__construct($Table, $RowData);
        $this->PrimaryKey = $Table->PrimaryKey($RowData);
        $this->PrimaryKeyColumnsAmount = count($Table->GetPrimaryKeyColumns());
    }