public ActionResult Create(FormCollection collection)
 {
     try
     {
         if (service.AddNewStade(ConvertFormCollectionToStadeComposite(collection)))
         {
             return(RedirectToAction("Index"));
         }
         else
         {
             return(View());
         }
     }
     catch
     {
         return(View());
     }
 }