コード例 #1
0
 /**
  * @name TypeAdhesionDetailVO()
  * @return bool
  * @desc Constructeur
  */
 function TypeAdhesionDetailVO($pId = null, $pIdAdhesion = null, $pLabel = null, $pIdPerimetre = null, $pMontant = null, $pDateCreation = null, $pDateModification = null, $pEtat = null, $pPerId = null, $pPerLabel = null, $pPerDateCreation = null, $pPerDateModification = null, $pPerEtat = null)
 {
     parent::__construct($pId, $pIdAdhesion, $pLabel, $pIdPerimetre, $pMontant, $pDateCreation, $pDateModification, $pEtat);
     if (!is_null($pPerId)) {
         $this->mPerId = $pPerId;
     }
     if (!is_null($pPerLabel)) {
         $this->mPerLabel = $pPerLabel;
     }
     if (!is_null($pPerDateCreation)) {
         $this->mPerDateCreation = $pPerDateCreation;
     }
     if (!is_null($pPerDateModification)) {
         $this->mPerDateModification = $pPerDateModification;
     }
     if (!is_null($pPerEtat)) {
         $this->mPerEtat = $pPerEtat;
     }
 }