Exemplo n.º 1
0
        public Response JoinMember(JoinForm joinInfo)
        {
            if (joinInfo == null)
            {
                throw new PopbillException(-99999999, "No JoinForm");
            }

            String PostData = toJsonString(joinInfo);

            return(httppost <Response>("/Join", "", "", PostData, null));
        }
Exemplo n.º 2
0
        //연동회원 신규가입
        public Response JoinMember(JoinForm joinInfo)
        {
            if (joinInfo == null)
            {
                throw new PopbillException(-99999999, "No JoinForm");
            }

            string postData = toJsonString(joinInfo);

            try
            {
                return(httppost <Response>("/Join", "", postData, "", null, ""));
            }
            catch (LinkhubException le)
            {
                throw new PopbillException(le);
            }
        }