コード例 #1
0
ファイル: BetController.cs プロジェクト: jaynguyen89/AutoJack
        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));
 }