public function updateReservaSalon(Reserva $entity, Salon $reservaSalon) { $entity->setReservaSalon($reservaSalon->getId()); return $this->persistenceManager->update($entity); }
public function updateInventarioSalon(ObjetoEnInventario $entity, Salon $inventarioSalon) { $entity->setInventarioSalon($inventarioSalon->getId()); return $this->persistenceManager->update($entity); }
public function updateObjetoPerdidoSalon(ObjetoPerdido $entity, Salon $objetoPerdidoSalon) { $entity->setObjetoPerdidoSalon($objetoPerdidoSalon->getId()); return $this->persistenceManager->update($entity); }
public function updateSalon(MonitorSalon $entity, Salon $salon) { $entity->setSalon($salon->getId()); return $this->persistenceManager->update($entity); }
/** * @param Salon $salon */ public function ajout(Salon $salon) { $this[$salon->getId()] = $salon; }