示例#1
0
        public Result UpdateOQCBatchInfo(List <tblPackagingBatch> batchInfoList)
        {
            IProduction iProductionSelect = new WCMS_DAL_Production();
            var         result            = new Result();

            try
            {
                result.IsSuccess = iProductionSelect.UpdateOQCBatchInfo(batchInfoList);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(result);
        }