public IActionResult Post(int idEvent, [FromBody] Commentaire commentaire)
        {
            Evenement evenement = dataProvider.GetEventById(idEvent);

            if (evenement.listecommentaire == null)
            {
                evenement.listecommentaire = new List <string>();
            }

            if (commentaire != null)
            {
                commentaire.evenementid = idEvent;
                dataProvider.AddComms(commentaire);

                evenement.listecommentaire.Add("Commentaire id: " + commentaire.id.ToString() + " " + commentaire.description);
                dataProvider.UpdateEvent(evenement);

                return(Ok(commentaire.description + " à bien été crée"));
            }
            else
            {
                return(UnprocessableEntity());
            }
        }