Beispiel #1
0
        public async Task <ActionResult> CartShippingMethodsJson(string shipmentId)
        {
            EnsureThatCartExist();

            var shippingMethods = await _cartBuilder.GetAvailableShippingMethodsAsync();

            return(Json(shippingMethods, JsonRequestBehavior.AllowGet));
        }