Exemple #1
0
 public int NewUser(byte AccType, string Login, string Password, string Email, string Name, string Surname, string Street, string City, string ZipCode, string HouseNumber, string BlockNumber, string FlatNumber)
 {
     ServiceG2A.PK.NewUserRequest inValue = new ServiceG2A.PK.NewUserRequest();
     inValue.Body             = new ServiceG2A.PK.NewUserRequestBody();
     inValue.Body.AccType     = AccType;
     inValue.Body.Login       = Login;
     inValue.Body.Password    = Password;
     inValue.Body.Email       = Email;
     inValue.Body.Name        = Name;
     inValue.Body.Surname     = Surname;
     inValue.Body.Street      = Street;
     inValue.Body.City        = City;
     inValue.Body.ZipCode     = ZipCode;
     inValue.Body.HouseNumber = HouseNumber;
     inValue.Body.BlockNumber = BlockNumber;
     inValue.Body.FlatNumber  = FlatNumber;
     ServiceG2A.PK.NewUserResponse retVal = ((ServiceG2A.PK.WebServicePKSoap)(this)).NewUser(inValue);
     return(retVal.Body.NewUserResult);
 }
Exemple #2
0
 ServiceG2A.PK.NewUserResponse ServiceG2A.PK.WebServicePKSoap.NewUser(ServiceG2A.PK.NewUserRequest request)
 {
     return(base.Channel.NewUser(request));
 }