public IActionResult GetBeds() { try { return(Ok(_bedService.GetBeds())); } catch (Exception ex) { return(BadRequest(ex.Message)); } }