private Place[] GetTopAvailabilited()
        {
            PlaceService placeService = new PlaceService();

            Place[] places = placeService.GetTopAvailabilited(10);

            return places;
        }