コード例 #1
0
 public JsonResult UpdatePoReference(string basketId, string poReferenceNumber)
 {
     if (!string.IsNullOrEmpty(basketId) && !string.IsNullOrEmpty(poReferenceNumber))
     {
         var resp = _basketApi.UpdatePoReference(Guid.Parse(basketId), poReferenceNumber);
         return(JsonSuccess(resp, JsonRequestBehavior.AllowGet));
     }
     return(JsonSuccess("", JsonRequestBehavior.AllowGet));
 }