示例#1
0
        public ShowLocationResponse ShowressInfo(ShowLocationRequest request)
        {
            ShowLocationResponse response = new ShowLocationResponse();

            response.Infos = BaseBLL <UserInfobll> .Instance.ShowressInfo(request.UserId);

            response.State = true;
            return(response);
        }
示例#2
0
        //显示地址信息
        public JsonResult ShowressInfo(ShowLocationRequest request)
        {
            ShowLocationResponse response = userBll.ShowressInfo(request);

            return(Json(response));
        }
示例#3
0
        //显示地址信息
        public ShowLocationResponse ShowressInfo(ShowLocationRequest request)
        {
            ShowLocationResponse response = ApiRequestHelper.Post <ShowLocationRequest, ShowLocationResponse>(request);

            return(response);
        }