예제 #1
0
        public Result UpdateProductionBatchStatus(List <ProductionMaster> producList)
        {
            IProduction iProductionSelect = new WCMS_DAL_Production();
            Result      _Result           = new Result();

            try
            {
                _Result.IsSuccess = iProductionSelect.UpdateProductionBatchStatus(producList);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(_Result);
        }