public IActionResult CreateMatch(Match match)
        {
            var temp = service.CreateMatch(match.ID, match.Description, match.TeamA, match.TeamB, match.Sport);

            return(Ok(temp));
        }