public function removeEventNgAction($event_id)
 {
     $em = $this->getDoctrine()->getManager();
     $response = new Response(json_encode(array("result" => Event::removeEventById($em, $event_id))));
     $response->headers->set('Content-Type', 'application/json');
     return $response;
 }