__construct() public méthode

public __construct ( )
Exemple #1
0
 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();
 }