Beispiel #1
0
 public async Task <ActionResult <bool> > AddStockInWatchlistAsync(string symbol)
 {
     // TODO: add error handling and appropriate http return codes
     return(await _watchlistService.AddEntryInWatchListAsync(symbol).ConfigureAwait(false));
 }