Пример #1
0
 public System.Threading.Tasks.Task <Mantenedores.wsUsuario.CreateResponse> CreateAsync(string user_name, string password, int id_tipo_usuario, string email)
 {
     Mantenedores.wsUsuario.CreateRequest inValue = new Mantenedores.wsUsuario.CreateRequest();
     inValue.Body                 = new Mantenedores.wsUsuario.CreateRequestBody();
     inValue.Body.user_name       = user_name;
     inValue.Body.password        = password;
     inValue.Body.id_tipo_usuario = id_tipo_usuario;
     inValue.Body.email           = email;
     return(((Mantenedores.wsUsuario.wsUsuarioSoap)(this)).CreateAsync(inValue));
 }
Пример #2
0
 public bool Create(string user_name, string password, int id_tipo_usuario, string email)
 {
     Mantenedores.wsUsuario.CreateRequest inValue = new Mantenedores.wsUsuario.CreateRequest();
     inValue.Body                 = new Mantenedores.wsUsuario.CreateRequestBody();
     inValue.Body.user_name       = user_name;
     inValue.Body.password        = password;
     inValue.Body.id_tipo_usuario = id_tipo_usuario;
     inValue.Body.email           = email;
     Mantenedores.wsUsuario.CreateResponse retVal = ((Mantenedores.wsUsuario.wsUsuarioSoap)(this)).Create(inValue);
     return(retVal.Body.CreateResult);
 }
Пример #3
0
 System.Threading.Tasks.Task <Mantenedores.wsUsuario.CreateResponse> Mantenedores.wsUsuario.wsUsuarioSoap.CreateAsync(Mantenedores.wsUsuario.CreateRequest request)
 {
     return(base.Channel.CreateAsync(request));
 }
Пример #4
0
 Mantenedores.wsUsuario.CreateResponse Mantenedores.wsUsuario.wsUsuarioSoap.Create(Mantenedores.wsUsuario.CreateRequest request)
 {
     return(base.Channel.Create(request));
 }