示例#1
0
        public void TakeBet()
        {
            BetView BetView = new BetView(this);

            BetView.Show();
        }
示例#2
0
 private float CalculateProfit(BetView bet)
 {
     return((float)Math.Round((decimal)bet.BetValue * bet.Games.Select(e => e.CoefficientValue).Aggregate((decimal)0.95, (x, y) => x * (decimal)y), 2));
 }