public ActionResult PutApproved(int id, [FromBody] bool value) { _bookingRepository.updateApproved(id, value); return(NoContent()); }