Gina Next Generation
 All Classes Namespaces Files Functions Variables
LocalLoopExtremity.php
Go to the documentation of this file.
00001 <?php
00002 
00003 namespace Etrali\GinangBundle\Entity;
00004 
00005 use Doctrine\ORM\Mapping as ORM;
00006 
00007 /**
00008  * LocalLoopExtremity
00009  *
00010  * @ORM\Table(name="local_loop_extremity")
00011  * @ORM\Entity
00012  */
00013 class LocalLoopExtremity
00014 {
00015     /**
00016      * @var integer
00017      *
00018      * @ORM\Column(name="id_local_loop_extremity", type="integer", nullable=false)
00019      * @ORM\Id
00020      * @ORM\GeneratedValue(strategy="IDENTITY")
00021      */
00022     private $idLocalLoopExtremity;
00023 
00024     /**
00025      * @var string
00026      *
00027      * @ORM\Column(name="cm_comment", type="text", nullable=true)
00028      */
00029     private $cmComment;
00030 
00031     /**
00032      * @var \DateTime
00033      *
00034      * @ORM\Column(name="dt_init_transfer", type="datetime", nullable=true)
00035      */
00036     private $dtInitTransfer;
00037 
00038     /**
00039      * @var \DateTime
00040      *
00041      * @ORM\Column(name="dt_request_transfer", type="datetime", nullable=true)
00042      */
00043     private $dtRequestTransfer;
00044 
00045     /**
00046      * @var \DateTime
00047      *
00048      * @ORM\Column(name="dt_schedule_delivery", type="datetime", nullable=true)
00049      */
00050     private $dtScheduleDelivery;
00051 
00052     /**
00053      * @var \DateTime
00054      *
00055      * @ORM\Column(name="dt_transfer_real_delivery", type="datetime", nullable=true)
00056      */
00057     private $dtTransferRealDelivery;
00058 
00059     /**
00060      * @var \DateTime
00061      *
00062      * @ORM\Column(name="dt_transfer_complete", type="datetime", nullable=true)
00063      */
00064     private $dtTransferComplete;
00065 
00066     /**
00067      * @var \DateTime
00068      *
00069      * @ORM\Column(name="dt_old_terminate", type="datetime", nullable=true)
00070      */
00071     private $dtOldTerminate;
00072 
00073     /**
00074      * @var \DateTime
00075      *
00076      * @ORM\Column(name="dt_ll_tested", type="datetime", nullable=true)
00077      */
00078     private $dtLlTested;
00079 
00080     /**
00081      * @var \DateTime
00082      *
00083      * @ORM\Column(name="dt_new_ll_tested", type="datetime", nullable=true)
00084      */
00085     private $dtNewLlTested;
00086 
00087     /**
00088      * @var string
00089      *
00090      * @ORM\Column(name="cd_local_loop_extremity_ref", type="string", length=45, nullable=true)
00091      */
00092     private $cdLocalLoopExtremityRef;
00093 
00094     /**
00095      * @var string
00096      *
00097      * @ORM\Column(name="cm_comment_technical", type="text", nullable=true)
00098      */
00099     private $cmCommentTechnical;
00100 
00101     /**
00102      * @var string
00103      *
00104      * @ORM\Column(name="lb_trader", type="string", length=30, nullable=true)
00105      */
00106     private $lbTrader;
00107 
00108     /**
00109      * @var string
00110      *
00111      * @ORM\Column(name="ll_extremity", type="string", length=2, nullable=true)
00112      */
00113     private $llExtremity;
00114 
00115     /**
00116      * @var \DateTime
00117      *
00118      * @ORM\Column(name="dt_ptt", type="datetime", nullable=true)
00119      */
00120     private $dtPtt;
00121 
00122     /**
00123      * @var \DateTime
00124      *
00125      * @ORM\Column(name="dt_racc", type="datetime", nullable=true)
00126      */
00127     private $dtRacc;
00128 
00129     /**
00130      * @var \DateTime
00131      *
00132      * @ORM\Column(name="dt_fin_tech", type="datetime", nullable=true)
00133      */
00134     private $dtFinTech;
00135 
00136     /**
00137      * @var string
00138      *
00139      * @ORM\Column(name="nb_chrono", type="string", length=45, nullable=true)
00140      */
00141     private $nbChrono;
00142 
00143     /**
00144      * @var string
00145      *
00146      * @ORM\Column(name="constit1", type="string", length=10, nullable=true)
00147      */
00148     private $constit1;
00149 
00150     /**
00151      * @var string
00152      *
00153      * @ORM\Column(name="constit_reception", type="string", length=10, nullable=true)
00154      */
00155     private $constitReception;
00156 
00157     /**
00158      * @var \DateTime
00159      *
00160      * @ORM\Column(name="dt_constit", type="datetime", nullable=true)
00161      */
00162     private $dtConstit;
00163 
00164     /**
00165      * @var string
00166      *
00167      * @ORM\Column(name="equipement", type="string", length=100, nullable=true)
00168      */
00169     private $equipement;
00170 
00171     /**
00172      * @var string
00173      *
00174      * @ORM\Column(name="carte_nature", type="string", length=100, nullable=true)
00175      */
00176     private $carteNature;
00177 
00178     /**
00179      * @var string
00180      *
00181      * @ORM\Column(name="nombre_it", type="string", length=100, nullable=true)
00182      */
00183     private $nombreIt;
00184 
00185     /**
00186      * @var boolean
00187      *
00188      * @ORM\Column(name="raccordement", type="boolean", nullable=true)
00189      */
00190     private $raccordement;
00191 
00192     /**
00193      * @var string
00194      *
00195      * @ORM\Column(name="penetration", type="string", length=45, nullable=true)
00196      */
00197     private $penetration;
00198 
00199     /**
00200      * @var \Pop
00201      *
00202      * @ORM\ManyToOne(targetEntity="Pop")
00203      * @ORM\JoinColumns({
00204      *   @ORM\JoinColumn(name="id_pop", referencedColumnName="id_pop")
00205      * })
00206      */
00207     private $idPop;
00208 
00209     /**
00210      * @var \Access
00211      *
00212      * @ORM\ManyToOne(targetEntity="Access")
00213      * @ORM\JoinColumns({
00214      *   @ORM\JoinColumn(name="id_access", referencedColumnName="id_access")
00215      * })
00216      */
00217     private $idAccess;
00218 
00219     /**
00220      * @var \Contact
00221      *
00222      * @ORM\ManyToOne(targetEntity="Contact")
00223      * @ORM\JoinColumns({
00224      *   @ORM\JoinColumn(name="id_admin_contact", referencedColumnName="id_contact")
00225      * })
00226      */
00227     private $idAdminContact;
00228 
00229     /**
00230      * @var \Customer
00231      *
00232      * @ORM\ManyToOne(targetEntity="Customer")
00233      * @ORM\JoinColumns({
00234      *   @ORM\JoinColumn(name="id_customer", referencedColumnName="id_customer")
00235      * })
00236      */
00237     private $idCustomer;
00238 
00239     /**
00240      * @var \Address
00241      *
00242      * @ORM\ManyToOne(targetEntity="Address")
00243      * @ORM\JoinColumns({
00244      *   @ORM\JoinColumn(name="id_delivery_address", referencedColumnName="id_address")
00245      * })
00246      */
00247     private $idDeliveryAddress;
00248 
00249     /**
00250      * @var \Provider
00251      *
00252      * @ORM\ManyToOne(targetEntity="Provider")
00253      * @ORM\JoinColumns({
00254      *   @ORM\JoinColumn(name="id_provider", referencedColumnName="id_provider")
00255      * })
00256      */
00257     private $idProvider;
00258 
00259     /**
00260      * @var \Situation
00261      *
00262      * @ORM\ManyToOne(targetEntity="Situation")
00263      * @ORM\JoinColumns({
00264      *   @ORM\JoinColumn(name="id_situation", referencedColumnName="id_situation")
00265      * })
00266      */
00267     private $idSituation;
00268 
00269     /**
00270      * @var \Contact
00271      *
00272      * @ORM\ManyToOne(targetEntity="Contact")
00273      * @ORM\JoinColumns({
00274      *   @ORM\JoinColumn(name="id_technical_contact", referencedColumnName="id_contact")
00275      * })
00276      */
00277     private $idTechnicalContact;
00278 
00279     /**
00280      * @var \Ts
00281      *
00282      * @ORM\ManyToOne(targetEntity="Ts")
00283      * @ORM\JoinColumns({
00284      *   @ORM\JoinColumn(name="id_ts", referencedColumnName="id_ts")
00285      * })
00286      */
00287     private $idTs;
00288 
00289     /**
00290      * @var \Ts
00291      *
00292      * @ORM\ManyToOne(targetEntity="Ts")
00293      * @ORM\JoinColumns({
00294      *   @ORM\JoinColumn(name="id_ts_out", referencedColumnName="id_ts")
00295      * })
00296      */
00297     private $idTsOut;
00298 
00299 
00300 
00301     /**
00302      * Get idLocalLoopExtremity
00303      *
00304      * @return integer 
00305      */
00306     public function getIdLocalLoopExtremity()
00307     {
00308         return $this->idLocalLoopExtremity;
00309     }
00310 
00311     /**
00312      * Set cmComment
00313      *
00314      * @param string $cmComment
00315      * @return LocalLoopExtremity
00316      */
00317     public function setCmComment($cmComment)
00318     {
00319         $this->cmComment = $cmComment;
00320     
00321         return $this;
00322     }
00323 
00324     /**
00325      * Get cmComment
00326      *
00327      * @return string 
00328      */
00329     public function getCmComment()
00330     {
00331         return $this->cmComment;
00332     }
00333 
00334     /**
00335      * Set dtInitTransfer
00336      *
00337      * @param \DateTime $dtInitTransfer
00338      * @return LocalLoopExtremity
00339      */
00340     public function setDtInitTransfer($dtInitTransfer)
00341     {
00342         $this->dtInitTransfer = $dtInitTransfer;
00343     
00344         return $this;
00345     }
00346 
00347     /**
00348      * Get dtInitTransfer
00349      *
00350      * @return \DateTime 
00351      */
00352     public function getDtInitTransfer()
00353     {
00354         return $this->dtInitTransfer;
00355     }
00356 
00357     /**
00358      * Set dtRequestTransfer
00359      *
00360      * @param \DateTime $dtRequestTransfer
00361      * @return LocalLoopExtremity
00362      */
00363     public function setDtRequestTransfer($dtRequestTransfer)
00364     {
00365         $this->dtRequestTransfer = $dtRequestTransfer;
00366     
00367         return $this;
00368     }
00369 
00370     /**
00371      * Get dtRequestTransfer
00372      *
00373      * @return \DateTime 
00374      */
00375     public function getDtRequestTransfer()
00376     {
00377         return $this->dtRequestTransfer;
00378     }
00379 
00380     /**
00381      * Set dtScheduleDelivery
00382      *
00383      * @param \DateTime $dtScheduleDelivery
00384      * @return LocalLoopExtremity
00385      */
00386     public function setDtScheduleDelivery($dtScheduleDelivery)
00387     {
00388         $this->dtScheduleDelivery = $dtScheduleDelivery;
00389     
00390         return $this;
00391     }
00392 
00393     /**
00394      * Get dtScheduleDelivery
00395      *
00396      * @return \DateTime 
00397      */
00398     public function getDtScheduleDelivery()
00399     {
00400         return $this->dtScheduleDelivery;
00401     }
00402 
00403     /**
00404      * Set dtTransferRealDelivery
00405      *
00406      * @param \DateTime $dtTransferRealDelivery
00407      * @return LocalLoopExtremity
00408      */
00409     public function setDtTransferRealDelivery($dtTransferRealDelivery)
00410     {
00411         $this->dtTransferRealDelivery = $dtTransferRealDelivery;
00412     
00413         return $this;
00414     }
00415 
00416     /**
00417      * Get dtTransferRealDelivery
00418      *
00419      * @return \DateTime 
00420      */
00421     public function getDtTransferRealDelivery()
00422     {
00423         return $this->dtTransferRealDelivery;
00424     }
00425 
00426     /**
00427      * Set dtTransferComplete
00428      *
00429      * @param \DateTime $dtTransferComplete
00430      * @return LocalLoopExtremity
00431      */
00432     public function setDtTransferComplete($dtTransferComplete)
00433     {
00434         $this->dtTransferComplete = $dtTransferComplete;
00435     
00436         return $this;
00437     }
00438 
00439     /**
00440      * Get dtTransferComplete
00441      *
00442      * @return \DateTime 
00443      */
00444     public function getDtTransferComplete()
00445     {
00446         return $this->dtTransferComplete;
00447     }
00448 
00449     /**
00450      * Set dtOldTerminate
00451      *
00452      * @param \DateTime $dtOldTerminate
00453      * @return LocalLoopExtremity
00454      */
00455     public function setDtOldTerminate($dtOldTerminate)
00456     {
00457         $this->dtOldTerminate = $dtOldTerminate;
00458     
00459         return $this;
00460     }
00461 
00462     /**
00463      * Get dtOldTerminate
00464      *
00465      * @return \DateTime 
00466      */
00467     public function getDtOldTerminate()
00468     {
00469         return $this->dtOldTerminate;
00470     }
00471 
00472     /**
00473      * Set dtLlTested
00474      *
00475      * @param \DateTime $dtLlTested
00476      * @return LocalLoopExtremity
00477      */
00478     public function setDtLlTested($dtLlTested)
00479     {
00480         $this->dtLlTested = $dtLlTested;
00481     
00482         return $this;
00483     }
00484 
00485     /**
00486      * Get dtLlTested
00487      *
00488      * @return \DateTime 
00489      */
00490     public function getDtLlTested()
00491     {
00492         return $this->dtLlTested;
00493     }
00494 
00495     /**
00496      * Set dtNewLlTested
00497      *
00498      * @param \DateTime $dtNewLlTested
00499      * @return LocalLoopExtremity
00500      */
00501     public function setDtNewLlTested($dtNewLlTested)
00502     {
00503         $this->dtNewLlTested = $dtNewLlTested;
00504     
00505         return $this;
00506     }
00507 
00508     /**
00509      * Get dtNewLlTested
00510      *
00511      * @return \DateTime 
00512      */
00513     public function getDtNewLlTested()
00514     {
00515         return $this->dtNewLlTested;
00516     }
00517 
00518     /**
00519      * Set cdLocalLoopExtremityRef
00520      *
00521      * @param string $cdLocalLoopExtremityRef
00522      * @return LocalLoopExtremity
00523      */
00524     public function setCdLocalLoopExtremityRef($cdLocalLoopExtremityRef)
00525     {
00526         $this->cdLocalLoopExtremityRef = $cdLocalLoopExtremityRef;
00527     
00528         return $this;
00529     }
00530 
00531     /**
00532      * Get cdLocalLoopExtremityRef
00533      *
00534      * @return string 
00535      */
00536     public function getCdLocalLoopExtremityRef()
00537     {
00538         return $this->cdLocalLoopExtremityRef;
00539     }
00540 
00541     /**
00542      * Set cmCommentTechnical
00543      *
00544      * @param string $cmCommentTechnical
00545      * @return LocalLoopExtremity
00546      */
00547     public function setCmCommentTechnical($cmCommentTechnical)
00548     {
00549         $this->cmCommentTechnical = $cmCommentTechnical;
00550     
00551         return $this;
00552     }
00553 
00554     /**
00555      * Get cmCommentTechnical
00556      *
00557      * @return string 
00558      */
00559     public function getCmCommentTechnical()
00560     {
00561         return $this->cmCommentTechnical;
00562     }
00563 
00564     /**
00565      * Set lbTrader
00566      *
00567      * @param string $lbTrader
00568      * @return LocalLoopExtremity
00569      */
00570     public function setLbTrader($lbTrader)
00571     {
00572         $this->lbTrader = $lbTrader;
00573     
00574         return $this;
00575     }
00576 
00577     /**
00578      * Get lbTrader
00579      *
00580      * @return string 
00581      */
00582     public function getLbTrader()
00583     {
00584         return $this->lbTrader;
00585     }
00586 
00587     /**
00588      * Set llExtremity
00589      *
00590      * @param string $llExtremity
00591      * @return LocalLoopExtremity
00592      */
00593     public function setLlExtremity($llExtremity)
00594     {
00595         $this->llExtremity = $llExtremity;
00596     
00597         return $this;
00598     }
00599 
00600     /**
00601      * Get llExtremity
00602      *
00603      * @return string 
00604      */
00605     public function getLlExtremity()
00606     {
00607         return $this->llExtremity;
00608     }
00609 
00610     /**
00611      * Set dtPtt
00612      *
00613      * @param \DateTime $dtPtt
00614      * @return LocalLoopExtremity
00615      */
00616     public function setDtPtt($dtPtt)
00617     {
00618         $this->dtPtt = $dtPtt;
00619     
00620         return $this;
00621     }
00622 
00623     /**
00624      * Get dtPtt
00625      *
00626      * @return \DateTime 
00627      */
00628     public function getDtPtt()
00629     {
00630         return $this->dtPtt;
00631     }
00632 
00633     /**
00634      * Set dtRacc
00635      *
00636      * @param \DateTime $dtRacc
00637      * @return LocalLoopExtremity
00638      */
00639     public function setDtRacc($dtRacc)
00640     {
00641         $this->dtRacc = $dtRacc;
00642     
00643         return $this;
00644     }
00645 
00646     /**
00647      * Get dtRacc
00648      *
00649      * @return \DateTime 
00650      */
00651     public function getDtRacc()
00652     {
00653         return $this->dtRacc;
00654     }
00655 
00656     /**
00657      * Set dtFinTech
00658      *
00659      * @param \DateTime $dtFinTech
00660      * @return LocalLoopExtremity
00661      */
00662     public function setDtFinTech($dtFinTech)
00663     {
00664         $this->dtFinTech = $dtFinTech;
00665     
00666         return $this;
00667     }
00668 
00669     /**
00670      * Get dtFinTech
00671      *
00672      * @return \DateTime 
00673      */
00674     public function getDtFinTech()
00675     {
00676         return $this->dtFinTech;
00677     }
00678 
00679     /**
00680      * Set nbChrono
00681      *
00682      * @param string $nbChrono
00683      * @return LocalLoopExtremity
00684      */
00685     public function setNbChrono($nbChrono)
00686     {
00687         $this->nbChrono = $nbChrono;
00688     
00689         return $this;
00690     }
00691 
00692     /**
00693      * Get nbChrono
00694      *
00695      * @return string 
00696      */
00697     public function getNbChrono()
00698     {
00699         return $this->nbChrono;
00700     }
00701 
00702     /**
00703      * Set constit1
00704      *
00705      * @param string $constit1
00706      * @return LocalLoopExtremity
00707      */
00708     public function setConstit1($constit1)
00709     {
00710         $this->constit1 = $constit1;
00711     
00712         return $this;
00713     }
00714 
00715     /**
00716      * Get constit1
00717      *
00718      * @return string 
00719      */
00720     public function getConstit1()
00721     {
00722         return $this->constit1;
00723     }
00724 
00725     /**
00726      * Set constitReception
00727      *
00728      * @param string $constitReception
00729      * @return LocalLoopExtremity
00730      */
00731     public function setConstitReception($constitReception)
00732     {
00733         $this->constitReception = $constitReception;
00734     
00735         return $this;
00736     }
00737 
00738     /**
00739      * Get constitReception
00740      *
00741      * @return string 
00742      */
00743     public function getConstitReception()
00744     {
00745         return $this->constitReception;
00746     }
00747 
00748     /**
00749      * Set dtConstit
00750      *
00751      * @param \DateTime $dtConstit
00752      * @return LocalLoopExtremity
00753      */
00754     public function setDtConstit($dtConstit)
00755     {
00756         $this->dtConstit = $dtConstit;
00757     
00758         return $this;
00759     }
00760 
00761     /**
00762      * Get dtConstit
00763      *
00764      * @return \DateTime 
00765      */
00766     public function getDtConstit()
00767     {
00768         return $this->dtConstit;
00769     }
00770 
00771     /**
00772      * Set equipement
00773      *
00774      * @param string $equipement
00775      * @return LocalLoopExtremity
00776      */
00777     public function setEquipement($equipement)
00778     {
00779         $this->equipement = $equipement;
00780     
00781         return $this;
00782     }
00783 
00784     /**
00785      * Get equipement
00786      *
00787      * @return string 
00788      */
00789     public function getEquipement()
00790     {
00791         return $this->equipement;
00792     }
00793 
00794     /**
00795      * Set carteNature
00796      *
00797      * @param string $carteNature
00798      * @return LocalLoopExtremity
00799      */
00800     public function setCarteNature($carteNature)
00801     {
00802         $this->carteNature = $carteNature;
00803     
00804         return $this;
00805     }
00806 
00807     /**
00808      * Get carteNature
00809      *
00810      * @return string 
00811      */
00812     public function getCarteNature()
00813     {
00814         return $this->carteNature;
00815     }
00816 
00817     /**
00818      * Set nombreIt
00819      *
00820      * @param string $nombreIt
00821      * @return LocalLoopExtremity
00822      */
00823     public function setNombreIt($nombreIt)
00824     {
00825         $this->nombreIt = $nombreIt;
00826     
00827         return $this;
00828     }
00829 
00830     /**
00831      * Get nombreIt
00832      *
00833      * @return string 
00834      */
00835     public function getNombreIt()
00836     {
00837         return $this->nombreIt;
00838     }
00839 
00840     /**
00841      * Set raccordement
00842      *
00843      * @param boolean $raccordement
00844      * @return LocalLoopExtremity
00845      */
00846     public function setRaccordement($raccordement)
00847     {
00848         $this->raccordement = $raccordement;
00849     
00850         return $this;
00851     }
00852 
00853     /**
00854      * Get raccordement
00855      *
00856      * @return boolean 
00857      */
00858     public function getRaccordement()
00859     {
00860         return $this->raccordement;
00861     }
00862 
00863     /**
00864      * Set penetration
00865      *
00866      * @param string $penetration
00867      * @return LocalLoopExtremity
00868      */
00869     public function setPenetration($penetration)
00870     {
00871         $this->penetration = $penetration;
00872     
00873         return $this;
00874     }
00875 
00876     /**
00877      * Get penetration
00878      *
00879      * @return string 
00880      */
00881     public function getPenetration()
00882     {
00883         return $this->penetration;
00884     }
00885 
00886     /**
00887      * Set idPop
00888      *
00889      * @param \Etrali\GinangBundle\Entity\Pop $idPop
00890      * @return LocalLoopExtremity
00891      */
00892     public function setIdPop(\Etrali\GinangBundle\Entity\Pop $idPop = null)
00893     {
00894         $this->idPop = $idPop;
00895     
00896         return $this;
00897     }
00898 
00899     /**
00900      * Get idPop
00901      *
00902      * @return \Etrali\GinangBundle\Entity\Pop 
00903      */
00904     public function getIdPop()
00905     {
00906         return $this->idPop;
00907     }
00908 
00909     /**
00910      * Set idAccess
00911      *
00912      * @param \Etrali\GinangBundle\Entity\Access $idAccess
00913      * @return LocalLoopExtremity
00914      */
00915     public function setIdAccess(\Etrali\GinangBundle\Entity\Access $idAccess = null)
00916     {
00917         $this->idAccess = $idAccess;
00918     
00919         return $this;
00920     }
00921 
00922     /**
00923      * Get idAccess
00924      *
00925      * @return \Etrali\GinangBundle\Entity\Access 
00926      */
00927     public function getIdAccess()
00928     {
00929         return $this->idAccess;
00930     }
00931 
00932     /**
00933      * Set idAdminContact
00934      *
00935      * @param \Etrali\GinangBundle\Entity\Contact $idAdminContact
00936      * @return LocalLoopExtremity
00937      */
00938     public function setIdAdminContact(\Etrali\GinangBundle\Entity\Contact $idAdminContact = null)
00939     {
00940         $this->idAdminContact = $idAdminContact;
00941     
00942         return $this;
00943     }
00944 
00945     /**
00946      * Get idAdminContact
00947      *
00948      * @return \Etrali\GinangBundle\Entity\Contact 
00949      */
00950     public function getIdAdminContact()
00951     {
00952         return $this->idAdminContact;
00953     }
00954 
00955     /**
00956      * Set idCustomer
00957      *
00958      * @param \Etrali\GinangBundle\Entity\Customer $idCustomer
00959      * @return LocalLoopExtremity
00960      */
00961     public function setIdCustomer(\Etrali\GinangBundle\Entity\Customer $idCustomer = null)
00962     {
00963         $this->idCustomer = $idCustomer;
00964     
00965         return $this;
00966     }
00967 
00968     /**
00969      * Get idCustomer
00970      *
00971      * @return \Etrali\GinangBundle\Entity\Customer 
00972      */
00973     public function getIdCustomer()
00974     {
00975         return $this->idCustomer;
00976     }
00977 
00978     /**
00979      * Set idDeliveryAddress
00980      *
00981      * @param \Etrali\GinangBundle\Entity\Address $idDeliveryAddress
00982      * @return LocalLoopExtremity
00983      */
00984     public function setIdDeliveryAddress(\Etrali\GinangBundle\Entity\Address $idDeliveryAddress = null)
00985     {
00986         $this->idDeliveryAddress = $idDeliveryAddress;
00987     
00988         return $this;
00989     }
00990 
00991     /**
00992      * Get idDeliveryAddress
00993      *
00994      * @return \Etrali\GinangBundle\Entity\Address 
00995      */
00996     public function getIdDeliveryAddress()
00997     {
00998         return $this->idDeliveryAddress;
00999     }
01000 
01001     /**
01002      * Set idProvider
01003      *
01004      * @param \Etrali\GinangBundle\Entity\Provider $idProvider
01005      * @return LocalLoopExtremity
01006      */
01007     public function setIdProvider(\Etrali\GinangBundle\Entity\Provider $idProvider = null)
01008     {
01009         $this->idProvider = $idProvider;
01010     
01011         return $this;
01012     }
01013 
01014     /**
01015      * Get idProvider
01016      *
01017      * @return \Etrali\GinangBundle\Entity\Provider 
01018      */
01019     public function getIdProvider()
01020     {
01021         return $this->idProvider;
01022     }
01023 
01024     /**
01025      * Set idSituation
01026      *
01027      * @param \Etrali\GinangBundle\Entity\Situation $idSituation
01028      * @return LocalLoopExtremity
01029      */
01030     public function setIdSituation(\Etrali\GinangBundle\Entity\Situation $idSituation = null)
01031     {
01032         $this->idSituation = $idSituation;
01033     
01034         return $this;
01035     }
01036 
01037     /**
01038      * Get idSituation
01039      *
01040      * @return \Etrali\GinangBundle\Entity\Situation 
01041      */
01042     public function getIdSituation()
01043     {
01044         return $this->idSituation;
01045     }
01046 
01047     /**
01048      * Set idTechnicalContact
01049      *
01050      * @param \Etrali\GinangBundle\Entity\Contact $idTechnicalContact
01051      * @return LocalLoopExtremity
01052      */
01053     public function setIdTechnicalContact(\Etrali\GinangBundle\Entity\Contact $idTechnicalContact = null)
01054     {
01055         $this->idTechnicalContact = $idTechnicalContact;
01056     
01057         return $this;
01058     }
01059 
01060     /**
01061      * Get idTechnicalContact
01062      *
01063      * @return \Etrali\GinangBundle\Entity\Contact 
01064      */
01065     public function getIdTechnicalContact()
01066     {
01067         return $this->idTechnicalContact;
01068     }
01069 
01070     /**
01071      * Set idTs
01072      *
01073      * @param \Etrali\GinangBundle\Entity\Ts $idTs
01074      * @return LocalLoopExtremity
01075      */
01076     public function setIdTs(\Etrali\GinangBundle\Entity\Ts $idTs = null)
01077     {
01078         $this->idTs = $idTs;
01079     
01080         return $this;
01081     }
01082 
01083     /**
01084      * Get idTs
01085      *
01086      * @return \Etrali\GinangBundle\Entity\Ts 
01087      */
01088     public function getIdTs()
01089     {
01090         return $this->idTs;
01091     }
01092 
01093     /**
01094      * Set idTsOut
01095      *
01096      * @param \Etrali\GinangBundle\Entity\Ts $idTsOut
01097      * @return LocalLoopExtremity
01098      */
01099     public function setIdTsOut(\Etrali\GinangBundle\Entity\Ts $idTsOut = null)
01100     {
01101         $this->idTsOut = $idTsOut;
01102     
01103         return $this;
01104     }
01105 
01106     /**
01107      * Get idTsOut
01108      *
01109      * @return \Etrali\GinangBundle\Entity\Ts 
01110      */
01111     public function getIdTsOut()
01112     {
01113         return $this->idTsOut;
01114     }
01115 }
 All Classes Namespaces Files Functions Variables