Ejemplo n.º 1
0
        public JsonResult SelectBatch(string batchId)
        {
            ThirdPartyCodeBatch result = new ThirdPartyCodeBatch();

            if (!string.IsNullOrWhiteSpace(batchId))
            {
                result = ThirdPartyMallConfigManage.SelectBatch(new Guid(batchId));
            }
            return(Json(result));
        }