public ActionResult <dynamic> deleteEvenement(String id)
        {
            if (!User.IsInRole(Role.Club))
            {
                return(Forbid());
            }
            dynamic message = _EvenementServices.SupprimerEvenement(id);

            return(message);
        }