/**
  * Action Show
  *
  * @param array $variables Variables
  *
  * @return Response Response
  */
 private function actionShow(Request $request, Response $response)
 {
     $element = $this->rest_service->getElement($request);
     return $response->withItem($element);
 }