Example #1
0
 protected function GenerateResponse()
 {
     try {
         $this->response = ClientesController::NuevoSeguimiento(isset($_POST['id_cliente']) ? $_POST['id_cliente'] : null, isset($_POST['texto']) ? $_POST['texto'] : null);
     } catch (Exception $e) {
         //Logger::error($e);
         throw new ApiException($this->error_dispatcher->invalidDatabaseOperation($e->getMessage()));
     }
 }