コード例 #1
0
 public int SaveUsers(int ParentID, string UserName, string LoginName, string Pass, int UserType, string FirstName, string CellPhone, string Address, int Status)
 {
     MgooGps.UsersAjax.SaveUsersRequest inValue = new MgooGps.UsersAjax.SaveUsersRequest();
     inValue.Body           = new MgooGps.UsersAjax.SaveUsersRequestBody();
     inValue.Body.ParentID  = ParentID;
     inValue.Body.UserName  = UserName;
     inValue.Body.LoginName = LoginName;
     inValue.Body.Pass      = Pass;
     inValue.Body.UserType  = UserType;
     inValue.Body.FirstName = FirstName;
     inValue.Body.CellPhone = CellPhone;
     inValue.Body.Address   = Address;
     inValue.Body.Status    = Status;
     MgooGps.UsersAjax.SaveUsersResponse retVal = ((MgooGps.UsersAjax.UsersAjaxSoap)(this)).SaveUsers(inValue);
     return(retVal.Body.SaveUsersResult);
 }
コード例 #2
0
 MgooGps.UsersAjax.SaveUsersResponse MgooGps.UsersAjax.UsersAjaxSoap.SaveUsers(MgooGps.UsersAjax.SaveUsersRequest request)
 {
     return(base.Channel.SaveUsers(request));
 }