From 89b204fbbe8154f6a5e59835ef4088583c3821ab Mon Sep 17 00:00:00 2001 From: Markines16 <80280295+Markines16@users.noreply.github.com> Date: Thu, 29 Apr 2021 10:21:07 +0200 Subject: [PATCH] Delete session_dto.php --- assets/php/common/session_dto.php | 56 ------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 assets/php/common/session_dto.php diff --git a/assets/php/common/session_dto.php b/assets/php/common/session_dto.php deleted file mode 100644 index 99ade75..0000000 --- a/assets/php/common/session_dto.php +++ /dev/null @@ -1,56 +0,0 @@ -_id = $id; - $this->_idfilm = $idfilm; - $this->_idhall = $idhall; - $this->_idcinema = $idcinema; - $this->_date = $date; - $this->_startTime = $startTime; - $this->_seatPrice = $seatPrice; - $this->_format = $format; - } - - //Methods: - - //Getters && Setters: - public function setId($id){ $this->_id = $id; } - public function getId(){ return $this->_id; } - - public function setIdfilm($idfilm){ $this->_idfilm = $idfilm; } - public function getIdfilm(){ return $this->_idfilm; } - - public function setIdhall($idhall){ $this->_idhall = $idhall; } - public function getIdhall(){ return $this->_idhall; } - - public function setIdcinema($cinema){ $this->_idcinema = $idcinema; } - public function getIdcinema(){ return $this->_idcinema; } - - public function setDate($date){ $this->_date = $date; } - public function getDate(){ return $this->_date; } - - public function setStartTime($startTime){ $this->_startTime = $startTime; } - public function getStartTime(){ return $this->_startTime; } - - public function setSeatPrice($seatPrice){ $this->_seatPrice = $seatPrice; } - public function getSeatPrice(){ return $this->_seatPrice; } - - public function setFormat($format){ $this->_format = $format; } - public function getFormat(){ return $this->_format; } - - } -?> \ No newline at end of file