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