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

@ -5,12 +5,12 @@
class Hall{
//Attributes:
private $_number; //Room number.
private $_idcinema; //Cinema Id
private $_numRows; //Num rows.
private $_numCol; //Num columns.
private $_total_seats;
private $_seats_map;
private $_number; //Room number.
private $_idcinema; //Cinema Id
private $_numRows; //Num rows.
private $_numCol; //Num columns.
private $_total_seats; //Toal seats.
private $_seats_map; //Seat map.
//Constructor:
function __construct($number, $idcinema, $numRows, $numCol, $total_seats, $seats_map){