public JsonResult CancelRewardPointProgressBooking(int bookingId)
        {
            var userId = User.Identity.GetUserId <long>();

            var status = BL_WebsiteUser.CancelLoyalityPointProgressBooking(bookingId, userId);

            if (status > 0)
            {
                return(Json(new { status = true, bookingId = bookingId, message = "Your pending booking with booking Id : " + bookingId + " has been successfully cancelled. " }, JsonRequestBehavior.AllowGet));
            }

            return(Json(new { status = false, message = "Sorry! An error occurred while processing your request, Kindly try after some time." }, JsonRequestBehavior.AllowGet));
        }