public List<Restaurant> RestaurantsGetByCity(int cityid)
        {
            RestaurantService r = new RestaurantService();

            return r.GetByCityId(cityid).ToList();
        }