public ActionResult <Match> Create(Match m) { _matchService.Create(m); return(CreatedAtRoute("GetMatch", new { id = m.Id.ToString() }, m)); }