public ActionResult <MatchResult> AddTeam(string name) { var team = service.AddTeam(name); return(Ok(team)); }