示例#1
0
        public Dictionary <string, Object> Remove(string memberAddressId)
        {
            var result = CommonRequest.ApiAddressDelete(memberAddressId);
            Dictionary <string, Object> dic = new Dictionary <string, object>();
            object returnValue = result.GetValue <Object>("return");

            if (returnValue != null && returnValue.ToString() == "202")
            {
                dic.Add("return", "ok");
            }
            else
            {
                dic.Add("return", "failure");
            }

            return(dic);
        }