83f4264ccb
por favor, no los volvais a sobrescribir y pongais de nuevo todos los dto y sus interfaces
44 lines
1.3 KiB
PHP
44 lines
1.3 KiB
PHP
<?php
|
|
include_once('../assets/php/common/hall_dao.php');
|
|
|
|
class Hall{
|
|
|
|
//Attributes:
|
|
private $_number; //Room number.
|
|
private $_idcinema; //Cinema Id
|
|
private $_numRows; //Num rows.
|
|
private $_numCol; //Num columns.
|
|
|
|
//Constructor:
|
|
function __construct($number, $idcinema, $numRows, $numCol){
|
|
$this->_number = $number;
|
|
$this->_idcinema = $idcinema;
|
|
$this->_numRows = $numRows;
|
|
$this->_numCol = $numCol;
|
|
}
|
|
|
|
//Methods:
|
|
public static function getListHalls($cinema){
|
|
$bd = new HallDAO('complucine');
|
|
if($bd )
|
|
return $bd->getAllHalls($cinema);
|
|
return "";
|
|
}
|
|
|
|
//Getters && Setters:
|
|
public function setNumber($number){ $this->_number = $number; }
|
|
public function getNumber(){ return $this->_number; }
|
|
|
|
public function setIdcinema($idcinema){ $this->_idcinema = $idcinema; }
|
|
public function getIdcinema(){ return $this->_idcinema; }
|
|
|
|
public function setNumRows($numRows){ $this->_numRows = $numRows; }
|
|
public function getNumRows(){ return $this->_numRows; }
|
|
|
|
public function setNumCol($numCol){ $this->_numCol = $numCol; }
|
|
public function getNumCol(){ return $this->_numCol; }
|
|
|
|
|
|
|
|
}
|
|
?>
|