Exemplo n.º 1
0
 public void Init(string cryptoCurrencyName)
 {
     Current = new CryptoCurrencyDto
     {
         MarketName = cryptoCurrencyName
     };
 }
 public void Configure(CryptoCurrencyDto cryptoCurrency)
 {
     _txtLastValue.Text = "Last value : " + cryptoCurrency.Last.ConvertExpo() + ".";
 }
Exemplo n.º 3
0
 public void DoSelectedCryptoItemCommand(CryptoCurrencyDto cryptoCurrency)
 {
     ShowViewModel <RemindersListViewModel>(new { cryptoCurrencyName = cryptoCurrency.MarketName });
 }