public HttpResponseMessage DeleteBooking(int id)
        {
            HttpResponseMessage response = Request.CreateResponse(HttpStatusCode.OK);

            response.Content = new StringContent(_hotelManager.DeleteBooking(id));
            return(response);
        }