/**
  * Obtiene la obra del contexto actual
  *
  * @return mixed
  */
 private function getCurrentObra()
 {
     if ($this->context->isEstablished()) {
         return $this->repository->getById($this->context->getId());
     }
     return null;
 }