public async Task <IActionResult> ListAllPlace()
        {
            var result = await _placesService.GetAllAsync();

            return(result != null?Ok(result) : NotFound("No Places Found"));
        }