/**
  *
  * @param int $id
  * @return object
  */
 public function findModel($id)
 {
     if (!empty($id)) {
         $model = ServicoCrm::find($id);
         return $model;
     }
 }