public JsonResult GetMatchups(int[] teamOneChampionIds, int[] teamTwoChampionIds, int maxMatchLimit = 1)
        {
            Console.WriteLine(DateTime.Now + " match request received");

            var response = new JsonResult(_matchProvider.GetMatchesForListOfTeamIds(teamOneChampionIds, teamTwoChampionIds, maxMatchLimit));

            Console.WriteLine(DateTime.Now + " match request returned.");

            return(response);
        }