Add files via upload

This commit is contained in:
Fernando Méndez
2021-05-24 17:02:40 +02:00
committed by GitHub
parent 7587548296
commit 895526114a
7 changed files with 105 additions and 14 deletions

View File

@ -3,11 +3,11 @@
class Promotion{
//Attributes:
private $_id; //Cinema ID.
private $_tittle; //Cinema name.
private $_description; //Cinema direction.
private $_code; //Cinema phone.
private $_active;
private $_id; //Promotion ID.
private $_tittle; //Promotions name.
private $_description; //Promotion description.
private $_code; //Promotion code.
private $_active; //Promotion is active?
//Constructor:
function __construct($id, $tittle, $description, $code, $active){