Esempio n. 1
0
File: User.cs Progetto: bpc096/psd
 public void AddExp(int value)
 {
     this._exp = this._exp.Add(value);
 }
Esempio n. 2
0
File: User.cs Progetto: bpc096/psd
 public User(Guid id, string name, Exp score)
 {
     this._id   = id;
     this._name = name;
     this._exp  = score;
 }