Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 36.63 KB | None | 0 0
  1. <?php
  2. include __DIR__ . "/ClassClient.php";
  3.  
  4. class BienImmobilier implements \JsonSerializable{
  5.  
  6.     private $Type;
  7.     private $Contrat;
  8.     private $id;
  9.     private $Adresse;
  10.     private $Ville;
  11.     private $CodePostal;
  12.     private $Surface;
  13.     private $Garage;
  14.     private $Chambre;
  15.     private $SalleDeBain;
  16.     private $Titre;
  17.     private $Description;
  18.     private $PrixAfficher;
  19.     private $PrixNet;
  20.     private $DateEntree;
  21.     private $Designation;
  22.     private $SalleEau;
  23.     private $Piscine;
  24.     private $Jardin;
  25.     private $Cuisine;
  26.     private $Niveau;
  27.     private $NombreDePiece;
  28.     private $TypeMandat;
  29.     private $TaxeFonciere;
  30.     private $TaxeHabitation;
  31.     private $ChargesDeCopropriete;
  32.     private $PerformanceEnergetique;
  33.     private $EmissionGES;
  34.     private $SurfaceSejour;
  35.     private $TypeDeChauffage;
  36.     private $ClasseEnergetique;
  37.     private $ClasseGES;
  38.     private $Secteur;
  39.     private $IdClient;
  40.     private $Client;
  41.     private $listImages;
  42.     private $Statut;
  43.     private $Parking;
  44.     private $Lat;
  45.     private $Lng;
  46.     private $CourteDescription;
  47.     private $DateModification;
  48.     private $AvisExpert;
  49.     private $NombreWc;
  50.     private $Dressing;
  51.     private $Lingerie;
  52.     private $Cave;
  53.     private $Dependance;
  54.     private $Terrain;
  55.     private $Terrasse;
  56.     private $Loggia;
  57.     private $HistoriqueDesPrix;
  58.     private $ChargeHonoraire;
  59.  
  60.     private $ClauseParticuliere;
  61.     private $DureeMandat;
  62.     private $DateCompromis;
  63.     private $DateActeAuthentique;
  64.     private $DateVente;
  65.  
  66.     private $NotaireVendeur;
  67.     private $NotaireAcquereur;
  68.     private $NotaireSequestre;
  69.     private $SeoUrl;
  70.  
  71.     private $Documents;
  72.  
  73.  
  74.      public function __construct($Type,$Contrat,$id,$Adresse,$Ville,$CodePostal,$Surface,$Garage,$Chambre,$SalleDeBain,$Titre,$Description,$PrixAfficher,$PrixNet,$DateEntree,$Designation,$SalleEau,$Piscine,$Jardin,$Cuisine,$Niveau,$NombreDePiece,$TypeMandat,$TaxeFonciere,$TaxeHabitation,$ChargesDeCopropriete,$PerformanceEnergetique,$EmissionGES,$SurfaceSejour,$TypeDeChauffage,$ClasseEnergetique,$ClasseGES,$Secteur,$idClient,$Statut,$Parking,$Lat,$Lng,$CourteDescription,$DateModification,$AvisExpert,$NombreWc,$Dressing,$Lingerie,$Cave,$Dependance,$Terrain,$Terrasse,$Loggia,$ClauseParticuliere,$DureeMandat,$DateCompromis,$DateActeAuthentique,$DateVente,$ChargeHonoraire,$SeoUrl){
  75.                 $this->listImages = array();
  76.                 $this->HistoriqueDesPrix = array();
  77.  
  78.                 $this->setType($Type);
  79.                 $this->setContrat($Contrat);
  80.                 $this->setid($id);
  81.                 $this->setAdresse($Adresse);
  82.                 $this->setVille($Ville);
  83.                 $this->setCodePostal($CodePostal);
  84.                 $this->setSurface($Surface);
  85.                 $this->setGarage($Garage);
  86.                 $this->setChambre($Chambre);
  87.                 $this->setSalleDeBain($SalleDeBain);
  88.                 $this->setTitre($Titre);
  89.                 $this->setDescription($Description);
  90.                 $this->setPrixAfficher($PrixAfficher);
  91.                 $this->setPrixNet($PrixNet);
  92.                 $this->setDateEntree($DateEntree);
  93.                 $this->setDesignation($Designation);
  94.                 $this->setSalleEau($SalleEau);
  95.                 $this->setPiscine($Piscine);
  96.                 $this->setJardin($Jardin);
  97.                 $this->setCuisine($Cuisine);
  98.                 $this->setNiveau($Niveau);
  99.                 $this->setNombreDePiece($NombreDePiece);
  100.                 $this->setTypeMandat($TypeMandat);
  101.                 $this->setTaxeFonciere($TaxeFonciere);
  102.                 $this->setTaxeHabitation($TaxeHabitation);
  103.                 $this->setChargesDeCopropriete($ChargesDeCopropriete);
  104.                 $this->setPerformanceEnergetique($PerformanceEnergetique);
  105.                 $this->setEmissionGES($EmissionGES);
  106.                 $this->setSurfaceSejour($SurfaceSejour);
  107.                 $this->setTypeDeChauffage($TypeDeChauffage);
  108.                 $this->setClasseEnergetique($ClasseEnergetique);
  109.                 $this->setClasseGES($ClasseGES);
  110.                 $this->setSecteur($Secteur);
  111.                 $this->setIdClient($idClient);
  112.                 $this->setStatut($Statut);
  113.                 $this->setParking($Parking);
  114.                 $this->setLat($Lat);
  115.                 $this->setLng($Lng);
  116.                 $this->setCourteDescription($CourteDescription);
  117.                 $this->setDateModification($DateModification);
  118.                 $this->setAvisExpert($AvisExpert);
  119.                 $this->setNombreWc($NombreWc);
  120.                 $this->setDressing($Dressing);
  121.                 $this->setLingerie($Lingerie);
  122.                 $this->setCave($Cave);
  123.                 $this->setDependance($Dependance);
  124.                 $this->setTerrain($Terrain);
  125.                 $this->setTerrasse($Terrasse);
  126.                 $this->setLoggia($Loggia);
  127.                 $this->setClauseParticuliere($ClauseParticuliere);
  128.                 $this->setDureeMandat($DureeMandat);
  129.                 $this->setDateCompromis($DateCompromis);
  130.                 $this->setDateActeAuthentique($DateActeAuthentique);
  131.                 $this->setDateVente($DateVente);
  132.                 $this->setChargeHonoraire($ChargeHonoraire);
  133.                 $this->setSeoUrl($SeoUrl);
  134.                
  135.  
  136.                 $user='amiraute_admin';
  137.                 $pass='OnlyTheBrave66';
  138.                 $dbh = new PDO('mysql:host=localhost;dbname=amiraute_accorimo', $user, $pass, array(PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8'));
  139.                 $sth = $dbh->prepare("SELECT * FROM client where id = ".$this->getIdClient());
  140.                 $sth->execute();
  141.                 $result = $sth->fetchAll();
  142.                 foreach($result as $row) {
  143.                     $this->Client = new Client($row['id'],$row['Nom'],$row['Prenom'],$row['Email'],$row['Telephone'],$row['Adresse'],$row['Ville'],$row['CodePostal'],$row['DateInscription']);
  144.                 }
  145.  
  146.                 $sth = $dbh->prepare("SELECT * FROM image where idBien = ".$this->id);
  147.                 $sth->execute();
  148.                 $result = $sth->fetchAll();
  149.                 foreach($result as $row) {
  150.                     //if (file_exists($row['CheminCompress'])) {
  151.                         $this->listImages[] = $row['CheminCompress'];
  152.                     //}else{
  153.                     //    $this->listImages[] = $row['Chemin'];
  154.                     //}
  155.                 }
  156.  
  157.                 $sth = $dbh->prepare("SELECT * FROM historiqueprix where idBien = ".$this->id . " ORDER BY DateModification DESC");
  158.                 $sth->execute();
  159.                 $result = $sth->fetchAll();
  160.  
  161.                 foreach($result as $row) {
  162.                     //FORMATAGE EURO
  163.                     $prixnet =floatval($row['PrixNet']);
  164.                     $prixafficher =floatval ($row['PrixAfficher']);
  165.  
  166.                     $fmt = new NumberFormatter( 'fr', NumberFormatter::CURRENCY );
  167.                     $prixnet =$fmt->formatCurrency($prixnet, "EUR");
  168.                     $prixafficher =$fmt->formatCurrency($prixafficher, "EUR");
  169.                     //FIN FORMATAGE EURO
  170.  
  171.                     $this->HistoriqueDesPrix[] = array("PrixNet"=>$prixnet, "PrixAfficher"=>$prixafficher, "DateModification"=>$row['DateModification']);
  172.                 }
  173.     }
  174.  
  175.     public function JsonSerialize()
  176.     {
  177.         $vars = get_object_vars($this);
  178.  
  179.         return $vars;
  180.     }
  181.  
  182.     /*public function BienImmobilier($_id){
  183.         try {
  184.             $dbh = new PDO('mysql:host=localhost;dbname=accorimo', 'root');
  185.             $sql =  'SELECT * FROM bien WHERE id ='.$_id;
  186.             foreach  ($dbh->query($sql) as $row) {
  187.                 $this->setType($row['Type']);
  188.                 $this->setContrat($row['Contrat']);
  189.                 $this->setid($row['id']);
  190.                 $this->setAdresse($row['Adresse']);
  191.                 $this->setVille($row['Ville']);
  192.                 $this->setCodePostal($row['CodePostal']);
  193.                 $this->setSurface($row['Surface']);
  194.                 $this->setGarage($row['Garage']);
  195.                 $this->setChambre($row['Chambre']);
  196.                 $this->setSalleDeBain($row['SalleDeBain']);
  197.                 $this->setTitre($row['Titre']);
  198.                 $this->setDescription($row['Description']);
  199.                 $this->setPrixAfficher($row['PrixAfficher']);
  200.                 $this->setPrixNet($row['PrixNet']);
  201.                 $this->setDateEntree($row['DateEntree']);
  202.                 $this->setDesignation($row['Designation']);
  203.                 $this->setSalleEau($row['SalleEau']);
  204.                 $this->setPiscine($row['Piscine']);
  205.                 $this->setJardin($row['Jardin']);
  206.                 $this->setCuisine($row['Cuisine']);
  207.                 $this->setNiveau($row['Niveau']);
  208.                 $this->setNombreDePiece($row['NombreDePiece']);
  209.                 $this->setTypeMandat($row['TypeMandat']);
  210.                 $this->setTaxeFonciere($row['TaxeFonciere']);
  211.                 $this->setTaxeHabitation($row['TaxeHabitation']);
  212.                 $this->setChargesDeCopropriete($row['ChargesDeCopropriete']);
  213.                 $this->setPerformanceEnergetique($row['PerformanceEnergetique']);
  214.                 $this->setEmissionGES($row['EmissionGES']);
  215.                 $this->setSurfaceSejour($row['SurfaceSejour']);
  216.                 $this->setTypeDeChauffage($row['TypeDeChauffage']);
  217.                 $this->setClasseEnergetique($row['ClasseEnergetique']);
  218.                 $this->setClasseGES($row['ClasseGES']);
  219.                 $this->setSecteur($row['Secteur']);
  220.                 var_dump($this);
  221.             }
  222.         } catch (PDOException $e) {
  223.             print "Erreur !: " . $e->getMessage() . "<br/>";
  224.             die();
  225.         }
  226.     }*/
  227.  
  228.  
  229.  
  230.  
  231.  
  232.     /**
  233.      * Gets the value of Type.
  234.      *
  235.      * @return mixed
  236.      */
  237.     public function getType()
  238.     {
  239.         return $this->Type;
  240.     }
  241.  
  242.     /**
  243.      * Sets the value of Type.
  244.      *
  245.      * @param mixed $Type the type
  246.      *
  247.      * @return self
  248.      */
  249.     public function setType($Type)
  250.     {
  251.         $this->Type = $Type;
  252.  
  253.         return $this;
  254.     }
  255.  
  256.     /**
  257.      * Gets the value of Contrat.
  258.      *
  259.      * @return mixed
  260.      */
  261.     public function getContrat()
  262.     {
  263.         return $this->Contrat;
  264.     }
  265.  
  266.     /**
  267.      * Sets the value of Contrat.
  268.      *
  269.      * @param mixed $Contrat the contrat
  270.      *
  271.      * @return self
  272.      */
  273.     public function setContrat($Contrat)
  274.     {
  275.         $this->Contrat = $Contrat;
  276.  
  277.         return $this;
  278.     }
  279.  
  280.     /**
  281.      * Gets the value of id.
  282.      *
  283.      * @return mixed
  284.      */
  285.     public function getId()
  286.     {
  287.         return $this->id;
  288.     }
  289.  
  290.     /**
  291.      * Sets the value of id.
  292.      *
  293.      * @param mixed $id the id
  294.      *
  295.      * @return self
  296.      */
  297.     public function setId($id)
  298.     {
  299.         $this->id = $id;
  300.  
  301.         return $this;
  302.     }
  303.  
  304.     /**
  305.      * Gets the value of Adresse.
  306.      *
  307.      * @return mixed
  308.      */
  309.     public function getAdresse()
  310.     {
  311.         return $this->Adresse;
  312.     }
  313.  
  314.     /**
  315.      * Sets the value of Adresse.
  316.      *
  317.      * @param mixed $Adresse the adresse
  318.      *
  319.      * @return self
  320.      */
  321.     public function setAdresse($Adresse)
  322.     {
  323.         $this->Adresse = $Adresse;
  324.  
  325.         return $this;
  326.     }
  327.  
  328.     /**
  329.      * Gets the value of Ville.
  330.      *
  331.      * @return mixed
  332.      */
  333.     public function getVille()
  334.     {
  335.         return $this->Ville;
  336.     }
  337.  
  338.     /**
  339.      * Sets the value of Ville.
  340.      *
  341.      * @param mixed $Ville the ville
  342.      *
  343.      * @return self
  344.      */
  345.     public function setVille($Ville)
  346.     {
  347.         $this->Ville = $Ville;
  348.  
  349.         return $this;
  350.     }
  351.  
  352.     /**
  353.      * Gets the value of CodePostal.
  354.      *
  355.      * @return mixed
  356.      */
  357.     public function getCodePostal()
  358.     {
  359.         return $this->CodePostal;
  360.     }
  361.  
  362.     /**
  363.      * Sets the value of CodePostal.
  364.      *
  365.      * @param mixed $CodePostal the code postal
  366.      *
  367.      * @return self
  368.      */
  369.     public function setCodePostal($CodePostal)
  370.     {
  371.         $this->CodePostal = $CodePostal;
  372.  
  373.         return $this;
  374.     }
  375.  
  376.     /**
  377.      * Gets the value of Surface.
  378.      *
  379.      * @return mixed
  380.      */
  381.     public function getSurface()
  382.     {
  383.         return $this->Surface;
  384.     }
  385.  
  386.     /**
  387.      * Sets the value of Surface.
  388.      *
  389.      * @param mixed $Surface the surface
  390.      *
  391.      * @return self
  392.      */
  393.     public function setSurface($Surface)
  394.     {
  395.         $this->Surface = $Surface;
  396.  
  397.         return $this;
  398.     }
  399.  
  400.     /**
  401.      * Gets the value of Garage.
  402.      *
  403.      * @return mixed
  404.      */
  405.     public function getGarage()
  406.     {
  407.         return $this->Garage;
  408.     }
  409.  
  410.     /**
  411.      * Sets the value of Garage.
  412.      *
  413.      * @param mixed $Garage the garage
  414.      *
  415.      * @return self
  416.      */
  417.     public function setGarage($Garage)
  418.     {
  419.         $this->Garage = $Garage;
  420.  
  421.         return $this;
  422.     }
  423.  
  424.     /**
  425.      * Gets the value of Chambre.
  426.      *
  427.      * @return mixed
  428.      */
  429.     public function getChambre()
  430.     {
  431.         return $this->Chambre;
  432.     }
  433.  
  434.     /**
  435.      * Sets the value of Chambre.
  436.      *
  437.      * @param mixed $Chambre the chambre
  438.      *
  439.      * @return self
  440.      */
  441.     public function setChambre($Chambre)
  442.     {
  443.         $this->Chambre = $Chambre;
  444.  
  445.         return $this;
  446.     }
  447.  
  448.     /**
  449.      * Gets the value of SalleDeBain.
  450.      *
  451.      * @return mixed
  452.      */
  453.     public function getSalleDeBain()
  454.     {
  455.         return $this->SalleDeBain;
  456.     }
  457.  
  458.     /**
  459.      * Sets the value of SalleDeBain.
  460.      *
  461.      * @param mixed $SalleDeBain the salle de bain
  462.      *
  463.      * @return self
  464.      */
  465.     public function setSalleDeBain($SalleDeBain)
  466.     {
  467.         $this->SalleDeBain = $SalleDeBain;
  468.  
  469.         return $this;
  470.     }
  471.  
  472.     /**
  473.      * Gets the value of Titre.
  474.      *
  475.      * @return mixed
  476.      */
  477.     public function getTitre()
  478.     {
  479.         return $this->Titre;
  480.     }
  481.  
  482.     /**
  483.      * Sets the value of Titre.
  484.      *
  485.      * @param mixed $Titre the titre
  486.      *
  487.      * @return self
  488.      */
  489.     public function setTitre($Titre)
  490.     {
  491.         $this->Titre = $Titre;
  492.  
  493.         return $this;
  494.     }
  495.  
  496.     /**
  497.      * Gets the value of Description.
  498.      *
  499.      * @return mixed
  500.      */
  501.     public function getDescription()
  502.     {
  503.         return $this->Description;
  504.     }
  505.  
  506.     /**
  507.      * Sets the value of Description.
  508.      *
  509.      * @param mixed $Description the description
  510.      *
  511.      * @return self
  512.      */
  513.     public function setDescription($Description)
  514.     {
  515.         $this->Description = $Description;
  516.  
  517.         return $this;
  518.     }
  519.  
  520.     /**
  521.      * Gets the value of PrixAfficher.
  522.      *
  523.      * @return mixed
  524.      */
  525.     public function getPrixAfficher()
  526.     {
  527.         return $this->PrixAfficher;
  528.     }
  529.  
  530.     /**
  531.      * Sets the value of PrixAfficher.
  532.      *
  533.      * @param mixed $PrixAfficher the prix afficher
  534.      *
  535.      * @return self
  536.      */
  537.     public function setPrixAfficher($PrixAfficher)
  538.     {
  539.         /*
  540.             //FORMATAGE EURO
  541.             $prixafficher =floatval ($PrixAfficher);
  542.  
  543.             $fmt = new NumberFormatter( 'fr', NumberFormatter::CURRENCY );
  544.             $prixafficher =$fmt->formatCurrency($prixafficher, "EUR");
  545.             //FIN FORMATAGE EURO
  546.             $this->PrixAfficher = $prixafficher;
  547.         */
  548.         $this->PrixAfficher = $PrixAfficher;
  549.  
  550.         return $this;
  551.     }
  552.  
  553.     /**
  554.      * Gets the value of PrixNet.
  555.      *
  556.      * @return mixed
  557.      */
  558.     public function getPrixNet()
  559.     {
  560.         return $this->PrixNet;
  561.     }
  562.  
  563.     /**
  564.      * Sets the value of PrixNet.
  565.      *
  566.      * @param mixed $PrixNet the prix net
  567.      *
  568.      * @return self
  569.      */
  570.     public function setPrixNet($PrixNet)
  571.     {
  572.         $this->PrixNet = $PrixNet;
  573.  
  574.         return $this;
  575.     }
  576.  
  577.     /**
  578.      * Gets the value of DateEntree.
  579.      *
  580.      * @return mixed
  581.      */
  582.     public function getDateEntree()
  583.     {
  584.         return $this->DateEntree;
  585.     }
  586.  
  587.     /**
  588.      * Sets the value of DateEntree.
  589.      *
  590.      * @param mixed $DateEntree the date entree
  591.      *
  592.      * @return self
  593.      */
  594.     public function setDateEntree($DateEntree)
  595.     {
  596.         $this->DateEntree = $DateEntree;
  597.  
  598.         return $this;
  599.     }
  600.  
  601.     /**
  602.      * Gets the value of Designation.
  603.      *
  604.      * @return mixed
  605.      */
  606.     public function getDesignation()
  607.     {
  608.         return $this->Designation;
  609.     }
  610.  
  611.     /**
  612.      * Sets the value of Designation.
  613.      *
  614.      * @param mixed $Designation the designation
  615.      *
  616.      * @return self
  617.      */
  618.     public function setDesignation($Designation)
  619.     {
  620.         $this->Designation = $Designation;
  621.  
  622.         return $this;
  623.     }
  624.  
  625.     /**
  626.      * Gets the value of SalleEau.
  627.      *
  628.      * @return mixed
  629.      */
  630.     public function getSalleEau()
  631.     {
  632.         return $this->SalleEau;
  633.     }
  634.  
  635.     /**
  636.      * Sets the value of SalleEau.
  637.      *
  638.      * @param mixed $SalleEau the salle eau
  639.      *
  640.      * @return self
  641.      */
  642.     public function setSalleEau($SalleEau)
  643.     {
  644.         $this->SalleEau = $SalleEau;
  645.  
  646.         return $this;
  647.     }
  648.  
  649.     /**
  650.      * Gets the value of Piscine.
  651.      *
  652.      * @return mixed
  653.      */
  654.     public function getPiscine()
  655.     {
  656.         return $this->Piscine;
  657.     }
  658.  
  659.     /**
  660.      * Sets the value of Piscine.
  661.      *
  662.      * @param mixed $Piscine the piscine
  663.      *
  664.      * @return self
  665.      */
  666.     public function setPiscine($Piscine)
  667.     {
  668.         $this->Piscine = $Piscine;
  669.  
  670.         return $this;
  671.     }
  672.  
  673.     /**
  674.      * Gets the value of Jardin.
  675.      *
  676.      * @return mixed
  677.      */
  678.     public function getJardin()
  679.     {
  680.         return $this->Jardin;
  681.     }
  682.  
  683.     /**
  684.      * Sets the value of Jardin.
  685.      *
  686.      * @param mixed $Jardin the jardin
  687.      *
  688.      * @return self
  689.      */
  690.     public function setJardin($Jardin)
  691.     {
  692.         $this->Jardin = $Jardin;
  693.  
  694.         return $this;
  695.     }
  696.  
  697.     /**
  698.      * Gets the value of Cuisine.
  699.      *
  700.      * @return mixed
  701.      */
  702.     public function getCuisine()
  703.     {
  704.         return $this->Cuisine;
  705.     }
  706.  
  707.     /**
  708.      * Sets the value of Cuisine.
  709.      *
  710.      * @param mixed $Cuisine the cuisine
  711.      *
  712.      * @return self
  713.      */
  714.     public function setCuisine($Cuisine)
  715.     {
  716.         $this->Cuisine = $Cuisine;
  717.  
  718.         return $this;
  719.     }
  720.  
  721.     /**
  722.      * Gets the value of Niveau.
  723.      *
  724.      * @return mixed
  725.      */
  726.     public function getNiveau()
  727.     {
  728.         return $this->Niveau;
  729.     }
  730.  
  731.     /**
  732.      * Sets the value of Niveau.
  733.      *
  734.      * @param mixed $Niveau the niveau
  735.      *
  736.      * @return self
  737.      */
  738.     public function setNiveau($Niveau)
  739.     {
  740.         $this->Niveau = $Niveau;
  741.  
  742.         return $this;
  743.     }
  744.  
  745.     /**
  746.      * Gets the value of NombreDePiece.
  747.      *
  748.      * @return mixed
  749.      */
  750.     public function getNombreDePiece()
  751.     {
  752.         return $this->NombreDePiece;
  753.     }
  754.  
  755.     /**
  756.      * Sets the value of NombreDePiece.
  757.      *
  758.      * @param mixed $NombreDePiece the nombre de piece
  759.      *
  760.      * @return self
  761.      */
  762.     public function setNombreDePiece($NombreDePiece)
  763.     {
  764.         $this->NombreDePiece = $NombreDePiece;
  765.  
  766.         return $this;
  767.     }
  768.  
  769.     /**
  770.      * Gets the value of TypeMandat.
  771.      *
  772.      * @return mixed
  773.      */
  774.     public function getTypeMandat()
  775.     {
  776.         return $this->TypeMandat;
  777.     }
  778.  
  779.     /**
  780.      * Sets the value of TypeMandat.
  781.      *
  782.      * @param mixed $TypeMandat the type mandat
  783.      *
  784.      * @return self
  785.      */
  786.     public function setTypeMandat($TypeMandat)
  787.     {
  788.         $this->TypeMandat = $TypeMandat;
  789.  
  790.         return $this;
  791.     }
  792.  
  793.     /**
  794.      * Gets the value of TaxeFonciere.
  795.      *
  796.      * @return mixed
  797.      */
  798.     public function getTaxeFonciere()
  799.     {
  800.         return $this->TaxeFonciere;
  801.     }
  802.  
  803.     /**
  804.      * Sets the value of TaxeFonciere.
  805.      *
  806.      * @param mixed $TaxeFonciere the taxe fonciere
  807.      *
  808.      * @return self
  809.      */
  810.     public function setTaxeFonciere($TaxeFonciere)
  811.     {
  812.         $this->TaxeFonciere = $TaxeFonciere;
  813.  
  814.         return $this;
  815.     }
  816.  
  817.     /**
  818.      * Gets the value of TaxeHabitation.
  819.      *
  820.      * @return mixed
  821.      */
  822.     public function getTaxeHabitation()
  823.     {
  824.         return $this->TaxeHabitation;
  825.     }
  826.  
  827.     /**
  828.      * Sets the value of TaxeHabitation.
  829.      *
  830.      * @param mixed $TaxeHabitation the taxe habitation
  831.      *
  832.      * @return self
  833.      */
  834.     public function setTaxeHabitation($TaxeHabitation)
  835.     {
  836.         $this->TaxeHabitation = $TaxeHabitation;
  837.  
  838.         return $this;
  839.     }
  840.  
  841.     /**
  842.      * Gets the value of ChargesDeCopropriete.
  843.      *
  844.      * @return mixed
  845.      */
  846.     public function getChargesDeCopropriete()
  847.     {
  848.         return $this->ChargesDeCopropriete;
  849.     }
  850.  
  851.     /**
  852.      * Sets the value of ChargesDeCopropriete.
  853.      *
  854.      * @param mixed $ChargesDeCopropriete the charges de copropriete
  855.      *
  856.      * @return self
  857.      */
  858.     public function setChargesDeCopropriete($ChargesDeCopropriete)
  859.     {
  860.         $this->ChargesDeCopropriete = $ChargesDeCopropriete;
  861.  
  862.         return $this;
  863.     }
  864.  
  865.     /**
  866.      * Gets the value of PerformanceEnergetique.
  867.      *
  868.      * @return mixed
  869.      */
  870.     public function getPerformanceEnergetique()
  871.     {
  872.         return $this->PerformanceEnergetique;
  873.     }
  874.  
  875.     /**
  876.      * Sets the value of PerformanceEnergetique.
  877.      *
  878.      * @param mixed $PerformanceEnergetique the performance energetique
  879.      *
  880.      * @return self
  881.      */
  882.     public function setPerformanceEnergetique($PerformanceEnergetique)
  883.     {
  884.         $this->PerformanceEnergetique = $PerformanceEnergetique;
  885.  
  886.         return $this;
  887.     }
  888.  
  889.     /**
  890.      * Gets the value of EmissionGES.
  891.      *
  892.      * @return mixed
  893.      */
  894.     public function getEmissionGES()
  895.     {
  896.         return $this->EmissionGES;
  897.     }
  898.  
  899.     /**
  900.      * Sets the value of EmissionGES.
  901.      *
  902.      * @param mixed $EmissionGES the emission g e s
  903.      *
  904.      * @return self
  905.      */
  906.     public function setEmissionGES($EmissionGES)
  907.     {
  908.         $this->EmissionGES = $EmissionGES;
  909.  
  910.         return $this;
  911.     }
  912.  
  913.     /**
  914.      * Gets the value of SurfaceSejour.
  915.      *
  916.      * @return mixed
  917.      */
  918.     public function getSurfaceSejour()
  919.     {
  920.         return $this->SurfaceSejour;
  921.     }
  922.  
  923.     /**
  924.      * Sets the value of SurfaceSejour.
  925.      *
  926.      * @param mixed $SurfaceSejour the surface sejour
  927.      *
  928.      * @return self
  929.      */
  930.     public function setSurfaceSejour($SurfaceSejour)
  931.     {
  932.         $this->SurfaceSejour = $SurfaceSejour;
  933.  
  934.         return $this;
  935.     }
  936.  
  937.     /**
  938.      * Gets the value of TypeDeChauffage.
  939.      *
  940.      * @return mixed
  941.      */
  942.     public function getTypeDeChauffage()
  943.     {
  944.         return $this->TypeDeChauffage;
  945.     }
  946.  
  947.     /**
  948.      * Sets the value of TypeDeChauffage.
  949.      *
  950.      * @param mixed $TypeDeChauffage the type de chauffage
  951.      *
  952.      * @return self
  953.      */
  954.     public function setTypeDeChauffage($TypeDeChauffage)
  955.     {
  956.         $this->TypeDeChauffage = $TypeDeChauffage;
  957.  
  958.         return $this;
  959.     }
  960.  
  961.     /**
  962.      * Gets the value of ClasseEnergetique.
  963.      *
  964.      * @return mixed
  965.      */
  966.     public function getClasseEnergetique()
  967.     {
  968.         return $this->ClasseEnergetique;
  969.     }
  970.  
  971.     /**
  972.      * Sets the value of ClasseEnergetique.
  973.      *
  974.      * @param mixed $ClasseEnergetique the classe energetique
  975.      *
  976.      * @return self
  977.      */
  978.     public function setClasseEnergetique($ClasseEnergetique)
  979.     {
  980.         $this->ClasseEnergetique = $ClasseEnergetique;
  981.  
  982.         return $this;
  983.     }
  984.  
  985.     /**
  986.      * Gets the value of ClasseGES.
  987.      *
  988.      * @return mixed
  989.      */
  990.     public function getClasseGES()
  991.     {
  992.         return $this->ClasseGES;
  993.     }
  994.  
  995.     /**
  996.      * Sets the value of ClasseGES.
  997.      *
  998.      * @param mixed $ClasseGES the classe g e s
  999.      *
  1000.      * @return self
  1001.      */
  1002.     public function setClasseGES($ClasseGES)
  1003.     {
  1004.         $this->ClasseGES = $ClasseGES;
  1005.  
  1006.         return $this;
  1007.     }
  1008.  
  1009.     /**
  1010.      * Gets the value of Secteur.
  1011.      *
  1012.      * @return mixed
  1013.      */
  1014.     public function getSecteur()
  1015.     {
  1016.         return $this->Secteur;
  1017.     }
  1018.  
  1019.     /**
  1020.      * Sets the value of Secteur.
  1021.      *
  1022.      * @param mixed $Secteur the secteur
  1023.      *
  1024.      * @return self
  1025.      */
  1026.     public function setSecteur($Secteur)
  1027.     {
  1028.         $this->Secteur = $Secteur;
  1029.  
  1030.         return $this;
  1031.     }
  1032.  
  1033.     /**
  1034.      * Gets the value of IdClient.
  1035.      *
  1036.      * @return mixed
  1037.      */
  1038.     public function getIdClient()
  1039.     {
  1040.         return $this->IdClient;
  1041.     }
  1042.  
  1043.     /**
  1044.      * Sets the value of IdClient.
  1045.      *
  1046.      * @param mixed $IdClient the id client
  1047.      *
  1048.      * @return self
  1049.      */
  1050.     public function setIdClient($IdClient)
  1051.     {
  1052.         $this->IdClient = $IdClient;
  1053.  
  1054.         return $this;
  1055.     }
  1056.  
  1057.     /**
  1058.      * Gets the value of Client.
  1059.      *
  1060.      * @return mixed
  1061.      */
  1062.     public function getClient()
  1063.     {
  1064.         return $this->Client;
  1065.     }
  1066.  
  1067.     /**
  1068.      * Sets the value of Client.
  1069.      *
  1070.      * @param mixed $Client the client
  1071.      *
  1072.      * @return self
  1073.      */
  1074.     public function setClient($Client)
  1075.     {
  1076.         $this->Client = $Client;
  1077.  
  1078.         return $this;
  1079.     }
  1080.  
  1081.     /**
  1082.      * Gets the value of listImages.
  1083.      *
  1084.      * @return mixed
  1085.      */
  1086.     public function getListImages()
  1087.     {
  1088.         return $this->listImages;
  1089.     }
  1090.  
  1091.     /**
  1092.      * Sets the value of listImages.
  1093.      *
  1094.      * @param mixed $listImages the list images
  1095.      *
  1096.      * @return self
  1097.      */
  1098.     public function setListImages($listImages)
  1099.     {
  1100.         $this->listImages = $listImages;
  1101.  
  1102.         return $this;
  1103.     }
  1104.  
  1105.     /**
  1106.      * Gets the value of Statut.
  1107.      *
  1108.      * @return mixed
  1109.      */
  1110.     public function getStatut()
  1111.     {
  1112.         return $this->Statut;
  1113.     }
  1114.  
  1115.     /**
  1116.      * Sets the value of Statut.
  1117.      *
  1118.      * @param mixed $Statut the Statut
  1119.      *
  1120.      * @return self
  1121.      */
  1122.     public function setStatut($Statut)
  1123.     {
  1124.         $this->Statut = $Statut;
  1125.  
  1126.         return $this;
  1127.     }
  1128.  
  1129.     /**
  1130.      * Gets the value of Parking.
  1131.      *
  1132.      * @return mixed
  1133.      */
  1134.     public function getParking()
  1135.     {
  1136.         return $this->Parking;
  1137.     }
  1138.  
  1139.     /**
  1140.      * Sets the value of Parking.
  1141.      *
  1142.      * @param mixed $Parking the parking
  1143.      *
  1144.      * @return self
  1145.      */
  1146.     public function setParking($Parking)
  1147.     {
  1148.         $this->Parking = $Parking;
  1149.  
  1150.         return $this;
  1151.     }
  1152.  
  1153.     /**
  1154.      * Gets the value of Lat.
  1155.      *
  1156.      * @return mixed
  1157.      */
  1158.     public function getLat()
  1159.     {
  1160.         return $this->Lat;
  1161.     }
  1162.  
  1163.     /**
  1164.      * Sets the value of Lat.
  1165.      *
  1166.      * @param mixed $Lat the lat
  1167.      *
  1168.      * @return self
  1169.      */
  1170.     public function setLat($Lat)
  1171.     {
  1172.         $this->Lat = $Lat;
  1173.  
  1174.         return $this;
  1175.     }
  1176.  
  1177.     /**
  1178.      * Gets the value of Lng.
  1179.      *
  1180.      * @return mixed
  1181.      */
  1182.     public function getLng()
  1183.     {
  1184.         return $this->Lng;
  1185.     }
  1186.  
  1187.     /**
  1188.      * Sets the value of Lng.
  1189.      *
  1190.      * @param mixed $Lng the lng
  1191.      *
  1192.      * @return self
  1193.      */
  1194.     public function setLng($Lng)
  1195.     {
  1196.         $this->Lng = $Lng;
  1197.  
  1198.         return $this;
  1199.     }
  1200.  
  1201.     /**
  1202.      * Gets the value of CourteDescription.
  1203.      *
  1204.      * @return mixed
  1205.      */
  1206.     public function getCourteDescription()
  1207.     {
  1208.         return $this->CourteDescription;
  1209.     }
  1210.  
  1211.     /**
  1212.      * Sets the value of CourteDescription.
  1213.      *
  1214.      * @param mixed $CourteDescription the courte description
  1215.      *
  1216.      * @return self
  1217.      */
  1218.     public function setCourteDescription($CourteDescription)
  1219.     {
  1220.         $this->CourteDescription = $CourteDescription;
  1221.  
  1222.         return $this;
  1223.     }
  1224.  
  1225.  
  1226.     /**
  1227.      * Gets the value of DateModification.
  1228.      *
  1229.      * @return mixed
  1230.      */
  1231.     public function getDateModification()
  1232.     {
  1233.         return $this->DateModification;
  1234.     }
  1235.  
  1236.     /**
  1237.      * Sets the value of DateModification.
  1238.      *
  1239.      * @param mixed $DateModification the date modification
  1240.      *
  1241.      * @return self
  1242.      */
  1243.     public function setDateModification($DateModification)
  1244.     {
  1245.         $this->DateModification = $DateModification;
  1246.  
  1247.         return $this;
  1248.     }
  1249.  
  1250.     /**
  1251.      * Gets the value of AvisExpert.
  1252.      *
  1253.      * @return mixed
  1254.      */
  1255.     public function getAvisExpert()
  1256.     {
  1257.         return $this->AvisExpert;
  1258.     }
  1259.  
  1260.     /**
  1261.      * Sets the value of AvisExpert.
  1262.      *
  1263.      * @param mixed $AvisExpert the avis expert
  1264.      *
  1265.      * @return self
  1266.      */
  1267.     public function setAvisExpert($AvisExpert)
  1268.     {
  1269.         $this->AvisExpert = $AvisExpert;
  1270.  
  1271.         return $this;
  1272.     }
  1273.  
  1274.     /**
  1275.      * Gets the value of NombreWc.
  1276.      *
  1277.      * @return mixed
  1278.      */
  1279.     public function getNombreWc()
  1280.     {
  1281.         return $this->NombreWc;
  1282.     }
  1283.  
  1284.     /**
  1285.      * Sets the value of NombreWc.
  1286.      *
  1287.      * @param mixed $NombreWc the nombre wc
  1288.      *
  1289.      * @return self
  1290.      */
  1291.     public function setNombreWc($NombreWc)
  1292.     {
  1293.         $this->NombreWc = $NombreWc;
  1294.  
  1295.         return $this;
  1296.     }
  1297.  
  1298.     /**
  1299.      * Gets the value of Dressing.
  1300.      *
  1301.      * @return mixed
  1302.      */
  1303.     public function getDressing()
  1304.     {
  1305.         return $this->Dressing;
  1306.     }
  1307.  
  1308.     /**
  1309.      * Sets the value of Dressing.
  1310.      *
  1311.      * @param mixed $Dressing the dressing
  1312.      *
  1313.      * @return self
  1314.      */
  1315.     public function setDressing($Dressing)
  1316.     {
  1317.         $this->Dressing = $Dressing;
  1318.  
  1319.         return $this;
  1320.     }
  1321.  
  1322.     /**
  1323.      * Gets the value of Lingerie.
  1324.      *
  1325.      * @return mixed
  1326.      */
  1327.     public function getLingerie()
  1328.     {
  1329.         return $this->Lingerie;
  1330.     }
  1331.  
  1332.     /**
  1333.      * Sets the value of Lingerie.
  1334.      *
  1335.      * @param mixed $Lingerie the lingerie
  1336.      *
  1337.      * @return self
  1338.      */
  1339.     public function setLingerie($Lingerie)
  1340.     {
  1341.         $this->Lingerie = $Lingerie;
  1342.  
  1343.         return $this;
  1344.     }
  1345.  
  1346.     /**
  1347.      * Gets the value of Cave.
  1348.      *
  1349.      * @return mixed
  1350.      */
  1351.     public function getCave()
  1352.     {
  1353.         return $this->Cave;
  1354.     }
  1355.  
  1356.     /**
  1357.      * Sets the value of Cave.
  1358.      *
  1359.      * @param mixed $Cave the cave
  1360.      *
  1361.      * @return self
  1362.      */
  1363.     public function setCave($Cave)
  1364.     {
  1365.         $this->Cave = $Cave;
  1366.  
  1367.         return $this;
  1368.     }
  1369.  
  1370.     /**
  1371.      * Gets the value of Dependance.
  1372.      *
  1373.      * @return mixed
  1374.      */
  1375.     public function getDependance()
  1376.     {
  1377.         return $this->Dependance;
  1378.     }
  1379.  
  1380.     /**
  1381.      * Sets the value of Dependance.
  1382.      *
  1383.      * @param mixed $Dependance the dépendance
  1384.      *
  1385.      * @return self
  1386.      */
  1387.     public function setDependance($Dependance)
  1388.     {
  1389.         $this->Dependance = $Dependance;
  1390.  
  1391.         return $this;
  1392.     }
  1393.  
  1394.     /**
  1395.      * Gets the value of Terrain.
  1396.      *
  1397.      * @return mixed
  1398.      */
  1399.     public function getTerrain()
  1400.     {
  1401.         return $this->Terrain;
  1402.     }
  1403.  
  1404.     /**
  1405.      * Sets the value of Terrain.
  1406.      *
  1407.      * @param mixed $Terrain the terrain
  1408.      *
  1409.      * @return self
  1410.      */
  1411.     public function setTerrain($Terrain)
  1412.     {
  1413.         $this->Terrain = $Terrain;
  1414.  
  1415.         return $this;
  1416.     }
  1417.  
  1418.     /**
  1419.      * Gets the value of Terrasse.
  1420.      *
  1421.      * @return mixed
  1422.      */
  1423.     public function getTerrasse()
  1424.     {
  1425.         return $this->Terrasse;
  1426.     }
  1427.  
  1428.     /**
  1429.      * Sets the value of Terrasse.
  1430.      *
  1431.      * @param mixed $Terrasse the terrasse
  1432.      *
  1433.      * @return self
  1434.      */
  1435.     public function setTerrasse($Terrasse)
  1436.     {
  1437.         $this->Terrasse = $Terrasse;
  1438.  
  1439.         return $this;
  1440.     }
  1441.  
  1442.     /**
  1443.      * Gets the value of Loggia.
  1444.      *
  1445.      * @return mixed
  1446.      */
  1447.     public function getLoggia()
  1448.     {
  1449.         return $this->Loggia;
  1450.     }
  1451.  
  1452.     /**
  1453.      * Sets the value of Loggia.
  1454.      *
  1455.      * @param mixed $Loggia the loggia
  1456.      *
  1457.      * @return self
  1458.      */
  1459.     public function setLoggia($Loggia)
  1460.     {
  1461.         $this->Loggia = $Loggia;
  1462.  
  1463.         return $this;
  1464.     }
  1465.  
  1466.     /**
  1467.      * Gets the value of HistoriqueDesPrix.
  1468.      *
  1469.      * @return mixed
  1470.      */
  1471.     public function getHistoriqueDesPrix()
  1472.     {
  1473.         return $this->HistoriqueDesPrix;
  1474.     }
  1475.  
  1476.     /**
  1477.      * Sets the value of HistoriqueDesPrix.
  1478.      *
  1479.      * @param mixed $HistoriqueDesPrix the historique des prix
  1480.      *
  1481.      * @return self
  1482.      */
  1483.     public function setHistoriqueDesPrix($HistoriqueDesPrix)
  1484.     {
  1485.         $this->HistoriqueDesPrix = $HistoriqueDesPrix;
  1486.  
  1487.         return $this;
  1488.     }
  1489.  
  1490.     /**
  1491.      * Gets the value of ClauseParticuliere.
  1492.      *
  1493.      * @return mixed
  1494.      */
  1495.     public function getClauseParticuliere()
  1496.     {
  1497.         return $this->ClauseParticuliere;
  1498.     }
  1499.  
  1500.     /**
  1501.      * Sets the value of ClauseParticuliere.
  1502.      *
  1503.      * @param mixed $ClauseParticuliere the clause particuliere
  1504.      *
  1505.      * @return self
  1506.      */
  1507.     public function setClauseParticuliere($ClauseParticuliere)
  1508.     {
  1509.         $this->ClauseParticuliere = $ClauseParticuliere;
  1510.  
  1511.         return $this;
  1512.     }
  1513.  
  1514.     /**
  1515.      * Gets the value of DureeMandat.
  1516.      *
  1517.      * @return mixed
  1518.      */
  1519.     public function getDureeMandat()
  1520.     {
  1521.         return $this->DureeMandat;
  1522.     }
  1523.  
  1524.     /**
  1525.      * Sets the value of DureeMandat.
  1526.      *
  1527.      * @param mixed $DureeMandat the duree mandat
  1528.      *
  1529.      * @return self
  1530.      */
  1531.     public function setDureeMandat($DureeMandat)
  1532.     {
  1533.         $this->DureeMandat = $DureeMandat;
  1534.  
  1535.         return $this;
  1536.     }
  1537.  
  1538.     /**
  1539.      * Gets the value of DateCompromis.
  1540.      *
  1541.      * @return mixed
  1542.      */
  1543.     public function getDateCompromis()
  1544.     {
  1545.         return $this->DateCompromis;
  1546.     }
  1547.  
  1548.     /**
  1549.      * Sets the value of DateCompromis.
  1550.      *
  1551.      * @param mixed $DateCompromis the date compromis
  1552.      *
  1553.      * @return self
  1554.      */
  1555.     public function setDateCompromis($DateCompromis)
  1556.     {
  1557.         $this->DateCompromis = $DateCompromis;
  1558.  
  1559.         return $this;
  1560.     }
  1561.  
  1562.     /**
  1563.      * Gets the value of DateActeAuthentique.
  1564.      *
  1565.      * @return mixed
  1566.      */
  1567.     public function getDateActeAuthentique()
  1568.     {
  1569.         return $this->DateActeAuthentique;
  1570.     }
  1571.  
  1572.     /**
  1573.      * Sets the value of DateActeAuthentique.
  1574.      *
  1575.      * @param mixed $DateActeAuthentique the date acte authentique
  1576.      *
  1577.      * @return self
  1578.      */
  1579.     public function setDateActeAuthentique($DateActeAuthentique)
  1580.     {
  1581.         $this->DateActeAuthentique = $DateActeAuthentique;
  1582.  
  1583.         return $this;
  1584.     }
  1585.  
  1586.     /**
  1587.      * Gets the value of DateVente.
  1588.      *
  1589.      * @return mixed
  1590.      */
  1591.     public function getDateVente()
  1592.     {
  1593.         return $this->DateVente;
  1594.     }
  1595.  
  1596.     /**
  1597.      * Sets the value of DateVente.
  1598.      *
  1599.      * @param mixed $DateVente the date vente
  1600.      *
  1601.      * @return self
  1602.      */
  1603.     public function setDateVente($DateVente)
  1604.     {
  1605.         $this->DateVente = $DateVente;
  1606.  
  1607.         return $this;
  1608.     }
  1609.  
  1610.     /**
  1611.      * Gets the value of NotaireVendeur.
  1612.      *
  1613.      * @return mixed
  1614.      */
  1615.     public function getNotaireVendeur()
  1616.     {
  1617.         return $this->NotaireVendeur;
  1618.     }
  1619.  
  1620.     /**
  1621.      * Sets the value of NotaireVendeur.
  1622.      *
  1623.      * @param mixed $NotaireVendeur the notaire vendeur
  1624.      *
  1625.      * @return self
  1626.      */
  1627.     public function setNotaireVendeur($NotaireVendeur)
  1628.     {
  1629.         $this->NotaireVendeur = $NotaireVendeur;
  1630.  
  1631.         return $this;
  1632.     }
  1633.  
  1634.     /**
  1635.      * Gets the value of NotaireAcquereur.
  1636.      *
  1637.      * @return mixed
  1638.      */
  1639.     public function getNotaireAcquereur()
  1640.     {
  1641.         return $this->NotaireAcquereur;
  1642.     }
  1643.  
  1644.     /**
  1645.      * Sets the value of NotaireAcquereur.
  1646.      *
  1647.      * @param mixed $NotaireAcquereur the notaire acquereur
  1648.      *
  1649.      * @return self
  1650.      */
  1651.     public function setNotaireAcquereur($NotaireAcquereur)
  1652.     {
  1653.         $this->NotaireAcquereur = $NotaireAcquereur;
  1654.  
  1655.         return $this;
  1656.     }
  1657.  
  1658.     /**
  1659.      * Gets the value of NotaireSequestre.
  1660.      *
  1661.      * @return mixed
  1662.      */
  1663.     public function getNotaireSequestre()
  1664.     {
  1665.         return $this->NotaireSequestre;
  1666.     }
  1667.  
  1668.     /**
  1669.      * Sets the value of NotaireSequestre.
  1670.      *
  1671.      * @param mixed $NotaireSequestre the notaire sequestre
  1672.      *
  1673.      * @return self
  1674.      */
  1675.     public function setNotaireSequestre($NotaireSequestre)
  1676.     {
  1677.         $this->NotaireSequestre = $NotaireSequestre;
  1678.  
  1679.         return $this;
  1680.     }
  1681.  
  1682.     /**
  1683.      * Gets the value of Documents.
  1684.      *
  1685.      * @return mixed
  1686.      */
  1687.     public function getDocuments()
  1688.     {
  1689.         return $this->Documents;
  1690.     }
  1691.  
  1692.     /**
  1693.      * Sets the value of Documents.
  1694.      *
  1695.      * @param mixed $Documents the documents
  1696.      *
  1697.      * @return self
  1698.      */
  1699.     public function setDocuments($Documents)
  1700.     {
  1701.         $this->Documents = $Documents;
  1702.  
  1703.         return $this;
  1704.     }
  1705.  
  1706.     /**
  1707.      * Gets the value of ChargeHonoraire.
  1708.      *
  1709.      * @return mixed
  1710.      */
  1711.     public function getChargeHonoraire()
  1712.     {
  1713.         return $this->ChargeHonoraire;
  1714.     }
  1715.  
  1716.     /**
  1717.      * Sets the value of ChargeHonoraire.
  1718.      *
  1719.      * @param mixed $ChargeHonoraire the charge honoraire
  1720.      *
  1721.      * @return self
  1722.      */
  1723.     public function setChargeHonoraire($ChargeHonoraire)
  1724.     {
  1725.         $this->ChargeHonoraire = $ChargeHonoraire;
  1726.  
  1727.         return $this;
  1728.     }
  1729.     public function setSeoUrl($SeoUrl)
  1730.     {
  1731.         $this->SeoUrl = $SeoUrl;
  1732.  
  1733.         return $this;
  1734.     }
  1735. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement