Exemplo n.º 1
0
 public async Task LoadQuoteAsync(string symbol)
 {
     try
     {
         QuoteData = await ClientApi.GetQuote(symbol);
     }
     catch (Exception)
     {
         GetService <IMessageBoxService>()?.ShowMessage("An error occurred getting quote data");
     }
 }