Ejemplo n.º 1
0
 public UserViewModel(UserDataViewModel user) : this(user.ID, user.UserName)
 {
 }
Ejemplo n.º 2
0
 public bool TrySubtractAmount(UserDataViewModel userData)
 {
     return(this.TrySubtractAmount(userData, this.RequiredAmount));
 }
Ejemplo n.º 3
0
 public UserCurrencyDataViewModel(UserDataViewModel user, UserCurrencyViewModel currency, int amount = 0)
 {
     this.User     = user;
     this.Currency = currency;
     this.Amount   = amount;
 }