Add files via upload

This commit is contained in:
Fernando Méndez
2021-06-02 17:42:58 +02:00
committed by GitHub
parent 85a0ff411d
commit 987fc1a641
8 changed files with 37 additions and 25 deletions

View File

@ -4,11 +4,11 @@
class Seat{
//Attributes:
private $_idhall;
private $_idcinema;
private $_numRow;
private $_numCol;
private $_state;
private $_idhall; //Hall id.
private $_idcinema; //Cinema id.
private $_numRow; //Number of row.
private $_numCol; //Number of column.
private $_state; //State of the seat-
//Constructor:
function __construct($idhall, $idcinema, $numRow, $numCol, $state){