// Retrieves the entire list of stocks available on the market
 public static Task <IList <Stock> > RetrieveStock(string StockName)
 {
     return(firestore.RetrieveStock(StockName));
 }