Exemplo n.º 1
0
 public void HandleOnUserBalanceNotification(Object sender, LowBalanceEventArgs e)
 {
     if (e.User.LowBalanceDefinition > e.User.Balance)
     {
         UI.DisplayLowUserBalance(e.User);
     }
     else
     {
         UI.DisplayUserBalanceNormalised(e.User);
     }
 }