コード例 #1
0
        public async Task <IActionResult> GetByIdPlace(int id)
        {
            var result = await _placesService.GetById(id);

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