depositoDetalles = new ArrayCollection(); $this->arancels = new ArrayCollection(); } public function __sleep() { return array('id', 'num_deposito', 'monto', 'cuenta_bancaria_id', 'persona_id', 'fecha_deposito', 'deposito_tipo_id'); } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set num_deposito * * @param integer $numDeposito * @return Deposito */ public function setNumDeposito($numDeposito) { $this->num_deposito = $numDeposito; return $this; } /** * Set monto * * @param float $monto * @return Deposito */ public function setMonto($monto) { $this->monto = $monto; return $this; } /** * Get monto * * @return float */ public function getMonto() { return $this->monto; } /** * Set fecha_deposito * * @param \DateTime $fechaDeposito * @return Deposito */ public function setFechaDeposito($fechaDeposito) { $this->fecha_deposito = $fechaDeposito; return $this; } /** * Get fecha_deposito * * @return \DateTime */ public function getFechaDeposito() { return $this->fecha_deposito; } /** * Add depositoDetalles * * @param \UBV\SurUbvBundle\Entity\DepositoDetalle $depositoDetalles * @return Deposito */ public function addDepositoDetalle(\UBV\SurUbvBundle\Entity\DepositoDetalle $depositoDetalles) { $this->depositoDetalles[] = $depositoDetalles; return $this; } /** * Remove depositoDetalles * * @param \UBV\SurUbvBundle\Entity\DepositoDetalle $depositoDetalles */ public function removeDepositoDetalle(\UBV\SurUbvBundle\Entity\DepositoDetalle $depositoDetalles) { $this->depositoDetalles->removeElement($depositoDetalles); } /** * Get depositoDetalles * * @return \Doctrine\Common\Collections\Collection */ public function getDepositoDetalles() { return $this->depositoDetalles; } /** * Set cuentaBancaria * * @param \UBV\SurUbvBundle\Entity\CuentaBancaria $cuentaBancaria * @return Deposito */ public function setCuentaBancaria(\UBV\SurUbvBundle\Entity\CuentaBancaria $cuentaBancaria) { $this->cuentaBancaria = $cuentaBancaria; return $this; } /** * Get cuentaBancaria * * @return \UBV\SurUbvBundle\Entity\CuentaBancaria */ public function getCuentaBancaria() { return $this->cuentaBancaria; } /** * Set persona * * @param \UBV\SurUbvBundle\Entity\Persona $persona * @return Deposito */ public function setPersona(\UBV\SurUbvBundle\Entity\Persona $persona) { $this->persona = $persona; return $this; } /** * Get persona * * @return \UBV\SurUbvBundle\Entity\Persona */ public function getPersona() { return $this->persona; } /** * Set depositoTipo * * @param \UBV\SurUbvBundle\Entity\DepositoTipo $depositoTipo * @return Deposito */ public function setDepositoTipo(\UBV\SurUbvBundle\Entity\DepositoTipo $depositoTipo) { $this->depositoTipo = $depositoTipo; return $this; } /** * Get depositoTipo * * @return \UBV\SurUbvBundle\Entity\DepositoTipo */ public function getDepositoTipo() { return $this->depositoTipo; } /** * Add arancels * * @param \UBV\SurUbvBundle\Entity\Arancel $arancels * @return Deposito */ public function addArancel(\UBV\SurUbvBundle\Entity\Arancel $arancels) { $this->arancels[] = $arancels; return $this; } /** * Remove arancels * * @param \UBV\SurUbvBundle\Entity\Arancel $arancels */ public function removeArancel(\UBV\SurUbvBundle\Entity\Arancel $arancels) { $this->arancels->removeElement($arancels); } /** * Get arancels * * @return \Doctrine\Common\Collections\Collection */ public function getArancels() { return $this->arancels; } /** * Get num_deposito * * @return integer */ public function getNumDeposito() { return $this->num_deposito; } /** * Set arancel * * @param \UBV\SurUbvBundle\Entity\Arancel $arancel * @return Deposito */ public function setArancel(\UBV\SurUbvBundle\Entity\Arancel $arancel) { $this->arancel = $arancel; return $this; } /** * Get arancel * * @return \UBV\SurUbvBundle\Entity\Arancel */ public function getArancel() { return $this->arancel; } }