public IActionResult Create(Paragraphe paragraphe)
 {
     if (ModelState.IsValid)
     {
         if (_daoParagraphe.CreateParagraphe(paragraphe).Result)
         {
             return(RedirectToAction("Index"));
         }
     }
     return(View(paragraphe));
 }