public async Task <ActionResult> MakeBet(NewWinnerBetViewModel newBet)
        {
            await _betService.MakeNewWinnerBet(newBet);

            return(RedirectToAction("Index"));
        }