Beispiel #1
0
        public string m_strGetSysParam(string p_strParam)
        {
            string result = "";

            try
            {
                using (clsTmdQCBatchSvc svc = new clsTmdQCBatchSvc())
                {
                    svc.m_lngGetSysParam(p_strParam, out result);
                }
            }
            catch
            {
                result = "";
            }
            return(result);
        }