// GET: Organizer/Delete/5
        public ActionResult Delete(int id)
        {
            OrganizerService orgS = new OrganizerService();

            orgS.removeParticipation(id, 2);
            TempData["notice"] = "Participatioin to an event Successfully deleted";
            return(RedirectToAction("Index"));
        }