public function updateCompSoftFechaInstalacion(ComputadoraSoftware $entity, $compSoftFechaInstalacion)
 {
     $entity->setCompSoftFechaInstalacion($compSoftFechaInstalacion);
     return $this->persistenceManager->update($entity);
 }
 public static function toEntity(ComputadoraSoftwareDTO $computadoraSoftwareDTO)
 {
     $computadoraSoftware = new ComputadoraSoftware();
     $computadoraSoftware->setId($computadoraSoftwareDTO->getId());
     $computadoraSoftware->setNumeroSeriePrograma($computadoraSoftwareDTO->getNumeroSeriePrograma());
     $computadoraSoftware->setCompSoftFechaInstalacion($computadoraSoftwareDTO->getCompSoftFechaInstalacion());
     $computadoraSoftware->setComputadora($computadoraSoftwareDTO->getComputadora());
     $computadoraSoftware->setSoftware($computadoraSoftwareDTO->getSoftware());
     return $computadoraSoftware;
 }