Esempio n. 1
0
 protected BonusResult(UserGameKey userGameKey)
 {
     this.Balance    = new Balance();
     this.IsHistory  = true;
     this.IsReport   = true;
     this.IsFreeGame = userGameKey.IsFreeGame;
     this.CampaignId = userGameKey.CampaignId;
     this.FRExpired  = userGameKey.FRExpired;
     this.FRWinLose  = userGameKey.FRWinLose;
 }
Esempio n. 2
0
 /// <summary>Initializes a new instance of the <see cref="FreeRoundSpinBet"/> class.</summary>
 public FreeRoundSpinBet(UserGameKey userGameKey, PlatformType platformType)
     : base(userGameKey, platformType)
 {
 }
Esempio n. 3
0
 /// <summary>Initializes a new instance of the <see cref="SpinBet"/> class.</summary>
 public SpinBetX(UserGameKey userGameKey, PlatformType platformType)
     : base(userGameKey, platformType)
 {
 }
Esempio n. 4
0
 protected GameBet(UserGameKey userGameKey, PlatformType platformType)
 {
     this.UserGameKey  = userGameKey;
     this.PlatformType = platformType;
 }
 public ErrorBonusResult(UserGameKey userGameKey)
     : base(userGameKey)
 {
     this.Type = "error";
 }