Example #1
0
        // Game start
        #region GameStart
        public PartialViewResult BlackJack(string name)
        {
            var currentGame = CreateGameCache(name);

            RoundOver(currentGame, true, false);

            cacheManage.CacheGame(currentGame);

            return(PartialView(currentGame));
        }