// GET: Tournoi
 public ActionResult Index()
 {
     return(View(service.GetAllTournois().Select(t => new Tournoi(t)).ToList()));
 }