public List <RestaurantRecord> GetRestaurantLocSearchResult(int cityID) => ZomatoInfo.GetRestaurantLocSearchResult(cityID).Restaurants.ToList();
public List <RestaurantRecord> GetRestaurantSearchResult(string searchQuery) => ZomatoInfo.GetRestaurantSearchResult(searchQuery).Restaurants.ToList();
public int GetCityID(string searchQuery) => ZomatoInfo.GetCityID(searchQuery);
public Restaurant GetRestaurantDetails(int id) => ZomatoInfo.GetRestaurantDetails(id);