public function saveColor()
 {
     try {
         $model = new TypeInstance($this->data->idAnnotationStatus);
         $model->setIdColor($this->data->idColor);
         $model->save();
         $this->renderPrompt('information', 'OK');
     } catch (\Exception $e) {
         $this->renderPrompt('error', $e->getMessage());
     }
 }