Exemple #1
0
 public PredictionGameUser(int winPoint, int time, DateTime playDate, User user, PredictionGame predictionGame)
 {
     this._winPoint       = winPoint;
     this._time           = time;
     this._playDate       = playDate;
     this._user           = user;
     this._predictionGame = predictionGame;
 }
Exemple #2
0
 public Prediction(string predictionName, bool active, int bonusPoint, int order, DateTime createdDate, DateTime modifiedDate, PredictionGame predictionGame)
 {
     this._predictionName = predictionName;
     this._active         = active;
     this._bonusPoint     = bonusPoint;
     this._order          = order;
     this._createdDate    = createdDate;
     this._modifiedDate   = modifiedDate;
     this._predictionGame = predictionGame;
 }