예제 #1
0
        public Result UpdateRework(List <tblRework> rework)
        {
            IProduction iProductionSelect = new WCMS_DAL_Production();
            Result      _Result           = new Result();

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