public async Task <Draft> SetupDraft()
        {
            Draft DraftVM = new Draft();


            // Get test setups
            DraftVM.TeamRadiant = await _testDataService.CreateTestTeam(1);

            DraftVM.TeamDire = await _testDataService.CreateTestTeam(2);

            // Get matchup data
            //Match.TeamRadiant.Players = await GetMatchups(Match.TeamRadiant.Players, Match.TeamDire.Players);
            //Match.TeamDire.Players = await GetMatchups(Match.TeamDire.Players, Match.TeamRadiant.Players);


            return(DraftVM);
        }