Exemplo n.º 1
0
        public string Save(string attachguid, string buscode)
        {
            string str = string.Empty;

            try
            {
                str = proxy.Save(attachguid, buscode, "0");
                return("{\"status\":\"ok\"}");
            }
            catch (Exception ex)
            {
                return("{\"status\":\"error\",\"msg\":\"" + ex.Message + "\"}");

                throw ex;
            }
        }