Ejemplo n.º 1
0
        /// <summary>
        /// 更新Ghost盈利
        /// </summary>
        /// <param name="playerBet"></param>
        /// <returns></returns>
        public static bool UpdateGhostBet(GhostBet ghostBet)
        {
            bool isSuccess = false;
            try
            {
                // 创建下注数据访问对象
                BetService betService = new BetService();
                isSuccess = betService.UpdateGhostBetWin(ghostBet);
            }
            catch (Exception e)
            {

                throw;
            }

            return isSuccess;
        }