public ActionResult Create(int id_event, EventOrganizer eventOrg)
        {
            OrganizerService orgs = new OrganizerService();

            orgs.ParticipateToAnEvent(id_event, 2, eventOrg);
            TempData["notice"] = "Participatioin to an event Send to President";
            return(RedirectToAction("Index"));
        }