// GET: Match/Details/5
 public ActionResult Details(int id)
 {
     return(View(new Match(service.GetMatchById(id))));
 }