Пример #1
0
        public BaseSoapResult <string> GetUserInfo(string userId)
        {
            UserInfoTestEntity info = new UserInfoTestEntity
            {
                Id   = userId,
                Name = "测试:" + userId
            };

            return(this.GetBaseSoapResult <UserInfoTestEntity>(info, GlobalErrorCodes.Success));
        }
Пример #2
0
 public BaseSoapResult <string> SaveUserInfo(UserInfoTestEntity info)
 {
     return(this.GetBaseSoapResult <UserInfoTestEntity>(info, GlobalErrorCodes.Success));
 }