예제 #1
0
파일: Row.php 프로젝트: timetoogo/penumbra
 public function __construct(ITable $Table, array $RowData = [])
 {
     parent::__construct($Table, $RowData);
     $this->PrimaryKey = $Table->PrimaryKey($RowData);
     $this->PrimaryKeyColumnsAmount = count($Table->GetPrimaryKeyColumns());
 }
예제 #2
0
 public function __construct(ITable $Table, array $PrimaryKeyData = [])
 {
     parent::__construct($Table, $PrimaryKeyData);
 }