Esempio 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() + ".";
 }
Esempio n. 3
0
 public void DoSelectedCryptoItemCommand(CryptoCurrencyDto cryptoCurrency)
 {
     ShowViewModel <RemindersListViewModel>(new { cryptoCurrencyName = cryptoCurrency.MarketName });
 }