public ResultContext GetShowPrcessNodeName(string strSystemID, string strProcessCode)
        {
            try
            {
                TargetController tc = new TargetController();
                bool             ShowProecessNodeName = tc.GetShowPrcessNodeName(strSystemID, strProcessCode);
                return(new ResultContext(ShowProecessNodeName));
            }
            catch (Exception ex)
            {
                return(new ResultContext((int)StatusCodeEnum.isCatch, ex.ToString()));

                throw;
            }
        }