// AddOfferToBooking method
 public ActionResult AddOfferToBooking(string code)
 {
     bookingService.AddOffer(code, this.HttpContext);
     return(RedirectToAction("BookingSummary"));
 }