/**
  * @param WeLearn_DTO_IDTO $dto
  * @return void
  */
 protected function _atualizar(WeLearn_DTO_IDTO $dto)
 {
     $this->_cf->insert($dto->getUsuarioId(), $dto->toCassandra());
     $this->_removerListaDeIM($dto->getUsuarioId());
     $this->_removerListaDeRS($dto->getUsuarioId());
     $this->_salvarListaDeIM($dto->getUsuarioId(), $dto->getListaDeIM());
     $this->_salvarListaDeRS($dto->getUsuarioId(), $dto->getListaDeRS());
 }