src/DTO/AffichageGraphiqueDTO.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\DTO;
  3. /*
  4.  * To change this license header, choose License Headers in Project Properties.
  5.  * To change this template file, choose Tools | Templates
  6.  * and open the template in the editor.
  7.  */
  8. /**
  9.  * Description of UploadFichierDTO
  10.  *
  11.  * @author lenovo
  12.  */
  13. class AffichageGraphiqueDTO {
  14.     
  15.     private $usage;    
  16.     private $zoneClimatique;
  17.     private $etancheiteMin;
  18.     private $etancheiteMax;
  19.     private $tauxVitreeMin;
  20.     private $tauxVitreeMax;
  21.     private $abscisse;
  22.     private $ordonnee;
  23.     
  24.     
  25.     function getAbscisse() {
  26.         return $this->abscisse;
  27.     }
  28.     function getOrdonnee() {
  29.         return $this->ordonnee;
  30.     }
  31.     function setAbscisse($abscisse): void {
  32.         $this->abscisse $abscisse;
  33.     }
  34.     function setOrdonnee($ordonnee): void {
  35.         $this->ordonnee $ordonnee;
  36.     }
  37.         function getZoneClimatique() {
  38.         return $this->zoneClimatique;
  39.     }
  40.     function getEtancheiteMin() {
  41.         return $this->etancheiteMin;
  42.     }
  43.     function getEtancheiteMax() {
  44.         return $this->etancheiteMax;
  45.     }
  46.     function getTauxVitreeMin() {
  47.         return $this->tauxVitreeMin;
  48.     }
  49.     function getTauxVitreeMax() {
  50.         return $this->tauxVitreeMax;
  51.     }
  52.     function setZoneClimatique($zoneClimatique): void {
  53.         $this->zoneClimatique $zoneClimatique;
  54.     }
  55.     function setEtancheiteMin($etancheiteMin): void {
  56.         $this->etancheiteMin $etancheiteMin;
  57.     }
  58.     function setEtancheiteMax($etancheiteMax): void {
  59.         $this->etancheiteMax $etancheiteMax;
  60.     }
  61.     function setTauxVitreeMin($tauxVitreeMin): void {
  62.         $this->tauxVitreeMin $tauxVitreeMin;
  63.     }
  64.     function setTauxVitreeMax($tauxVitreeMax): void {
  65.         $this->tauxVitreeMax $tauxVitreeMax;
  66.     }
  67.     function getUsage() {
  68.         return $this->usage;
  69.     }
  70.     function setUsage($usage): void {
  71.         $this->usage $usage;
  72.     }
  73. }