Exemple #1
0
 public bool UpdateUserInfo(int UserID, string FirstName, string CellPhone, string Address, string TimeZone, string Email, int SendType)
 {
     MgooGps.UsersAjax.UpdateUserInfoRequest inValue = new MgooGps.UsersAjax.UpdateUserInfoRequest();
     inValue.Body           = new MgooGps.UsersAjax.UpdateUserInfoRequestBody();
     inValue.Body.UserID    = UserID;
     inValue.Body.FirstName = FirstName;
     inValue.Body.CellPhone = CellPhone;
     inValue.Body.Address   = Address;
     inValue.Body.TimeZone  = TimeZone;
     inValue.Body.Email     = Email;
     inValue.Body.SendType  = SendType;
     MgooGps.UsersAjax.UpdateUserInfoResponse retVal = ((MgooGps.UsersAjax.UsersAjaxSoap)(this)).UpdateUserInfo(inValue);
     return(retVal.Body.UpdateUserInfoResult);
 }
Exemple #2
0
 MgooGps.UsersAjax.UpdateUserInfoResponse MgooGps.UsersAjax.UsersAjaxSoap.UpdateUserInfo(MgooGps.UsersAjax.UpdateUserInfoRequest request)
 {
     return(base.Channel.UpdateUserInfo(request));
 }