public JsonResult GetStackHolder(string stackHolder, string type)
        {
            List <StackInfo> stackHolders = new List <StackInfo>();
            var resp = new PropertyInfoData();

            stackHolders = resp.GetStackInfoData(stackHolder, type);
            return(Json(stackHolders, JsonRequestBehavior.AllowGet));
        }