示例#1
0
        public ActionResult ChangeBillingMethod(BillingMethods id)
        {
            //var checkout = Session["checkout"] as CheckOutDTO;

            //checkout.SelectedBillingMethod = id;
            var result = _checkOutService.SetBillingMethod(User.Identity.GetUserId(), id);

            //Session["checkout"] = checkout;

            return(Json(result));
        }