public string aComnSite(string pDbNm, string[] param, out string reMsg, out string reData)
        {
            string reCode = "N";

            string         reVal   = "";
            BizComnCodeGrp bizComn = null;

            try
            {
                bizComn = new BizComnCodeGrp();

                try
                {
                    Hashtable hParam = new Hashtable();
                    hParam.Add("pSite_Cd", Convert.ToInt32(param[0]));
                    hParam.Add("pCcode_Grp", param[1].ToString());
                    hParam.Add("pCcode_Nm", param[2].ToString());
                    hParam.Add("pMemo", param[3].ToString());
                    hParam.Add("pSort_No", Convert.ToInt32(param[4]));
                    hParam.Add("pInput_Id", Convert.ToInt32(param[5]));
                    hParam.Add("@rtnCcode", "");

                    reVal = bizComn.aComnSite(pDbNm, hParam, out Hashtable outVal);

                    if (outVal != null)
                    {
                        foreach (DictionaryEntry dictionaryEntry in outVal)
                        {
                            string[] row      = new string[] { dictionaryEntry.Key.ToString(), dictionaryEntry.Value.ToString(), "" };
                            string   rowCount = row.Length.ToString();
                            //string rowKey = row[0].ToString();
                            reVal = row[1].ToString();
                        }
                    }

                    reMsg  = "[검색 성공]";
                    reCode = "Y";
                }
                catch (Exception ex)
                {
                    reMsg  = "[검색 실패]" + ex.ToString();
                    reCode = "N";
                }
            }
            catch (Exception ex)
            {
                reMsg  = "[검색 에러 - BizSystem 연결 실패] :: " + ex.ToString();
                reCode = "N";
            }

            reData = reVal;

            return(reCode);
        }