public ActionResult GetCustAlley(string cond)
        {
            try
            {
                IAutoCompleteHandler handler = ServiceContainer.GetService <IAutoCompleteHandler>() as IAutoCompleteHandler;
                List <doCustAlley>   lst     = handler.GetCustAlley(cond);

                List <string> strList = new List <string>();

                foreach (var l in lst)
                {
                    strList.Add(l.Alley);
                }

                //string xml = CommonUtil.ConvertToXml<doCustAlley>(lst);
                return(Json(strList.ToArray()));
            }
            catch (Exception ex)
            {
                ObjectResultData res = new ObjectResultData();
                res.AddErrorMessage(ex);
                return(Json(res));
            }
        }