Exemplo n.º 1
0
 public QuestionUser(int winPoint, int time, DateTime playDate, User user, QuestionGame questionGame)
 {
     this._winPoint     = winPoint;
     this._time         = time;
     this._playDate     = playDate;
     this._user         = user;
     this._questionGame = questionGame;
 }
Exemplo n.º 2
0
 public Question(string questionName, bool active, int order, int bonusPoint, DateTime createdDate, DateTime modifiedDate, QuestionGame questionGame)
 {
     this._questionName = questionName;
     this._active       = active;
     this._order        = order;
     this._bonusPoint   = bonusPoint;
     this._createdDate  = createdDate;
     this._modifiedDate = modifiedDate;
     this._questionGame = questionGame;
 }