public IActionResult Result() { YelpApi repos = YelpApi.Recommend(); return(View(repos)); }
public IActionResult Search(YelpApi newSearch) { newSearch.Send(); return(RedirectToAction("Result")); }
public FoodContext() { _yelp = new YelpApi(); GetCurrentLocation(); }