Storm\Drivers\Dynamic\Relational\JoinTable::__construct PHP Метод

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

public __construct ( $Name, Storm\Core\Relational\ITable $Table1, Storm\Core\Relational\ITable $Table2 )
$Table1 Storm\Core\Relational\ITable
$Table2 Storm\Core\Relational\ITable
    public function __construct($Name, Relational\ITable $Table1, Relational\ITable $Table2)
    {
        $this->Name = $Name;
        $this->Table1 = $Table1;
        $this->Table2 = $Table2;
        $this->AddColumns($Table1, $this->ForeignKey1Map);
        $this->AddColumns($Table2, $this->ForeignKey2Map);
        parent::__construct();
    }