Пример #1
0
 public CorrectScore()
 {
     this._objWinScoreRange = EnumCollection.eScoreRange.Fixed;
     this._intWinScore = 0;
     this._objLoseScoreRange = EnumCollection.eScoreRange.Fixed;
     this._intLoseScore = 0;
     this._dblHomeWinOdds = 0.0;
     this._dblAwayWinOdds = 0.0;
     this._strHomeWinBetLink = "";
     this._strAwayWinBetLink = "";
 }
Пример #2
0
 public CorrectScore(EnumCollection.eScoreRange range1, int num1, EnumCollection.eScoreRange range2, int num2, string text1, string text2)
 {
     this._objWinScoreRange = EnumCollection.eScoreRange.Fixed;
     this._intWinScore = 0;
     this._objLoseScoreRange = EnumCollection.eScoreRange.Fixed;
     this._intLoseScore = 0;
     this._dblHomeWinOdds = 0.0;
     this._dblAwayWinOdds = 0.0;
     this._strHomeWinBetLink = "";
     this._strAwayWinBetLink = "";
     this._objWinScoreRange = range1;
     this._intWinScore = num1;
     this._objLoseScoreRange = range2;
     this._intLoseScore = num2;
     this.set_HomeWinOddsString(text1);
     this.set_AwayWinOddsString(text2);
 }