Ejemplo n.º 1
0
        public async Task <IActionResult> GetByIdPlace(int id)
        {
            var result = await _bookingsService.GetById(id);

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