public bool Update(GUIEscritorioSGA.ServiceBodega.MDBodega editableBodega)
 {
     GUIEscritorioSGA.ServiceBodega.UpdateRequest inValue = new GUIEscritorioSGA.ServiceBodega.UpdateRequest();
     inValue.Body = new GUIEscritorioSGA.ServiceBodega.UpdateRequestBody();
     inValue.Body.editableBodega = editableBodega;
     GUIEscritorioSGA.ServiceBodega.UpdateResponse retVal = ((GUIEscritorioSGA.ServiceBodega.WebServiceBodegaSoap)(this)).Update(inValue);
     return(retVal.Body.UpdateResult);
 }
 public bool Insert(GUIEscritorioSGA.ServiceBodega.MDBodega nuevoTipoProducto)
 {
     GUIEscritorioSGA.ServiceBodega.InsertRequest inValue = new GUIEscritorioSGA.ServiceBodega.InsertRequest();
     inValue.Body = new GUIEscritorioSGA.ServiceBodega.InsertRequestBody();
     inValue.Body.nuevoTipoProducto = nuevoTipoProducto;
     GUIEscritorioSGA.ServiceBodega.InsertResponse retVal = ((GUIEscritorioSGA.ServiceBodega.WebServiceBodegaSoap)(this)).Insert(inValue);
     return(retVal.Body.InsertResult);
 }
 public System.Threading.Tasks.Task <GUIEscritorioSGA.ServiceBodega.UpdateResponse> UpdateAsync(GUIEscritorioSGA.ServiceBodega.MDBodega editableBodega)
 {
     GUIEscritorioSGA.ServiceBodega.UpdateRequest inValue = new GUIEscritorioSGA.ServiceBodega.UpdateRequest();
     inValue.Body = new GUIEscritorioSGA.ServiceBodega.UpdateRequestBody();
     inValue.Body.editableBodega = editableBodega;
     return(((GUIEscritorioSGA.ServiceBodega.WebServiceBodegaSoap)(this)).UpdateAsync(inValue));
 }
 public System.Threading.Tasks.Task <GUIEscritorioSGA.ServiceBodega.InsertResponse> InsertAsync(GUIEscritorioSGA.ServiceBodega.MDBodega nuevoTipoProducto)
 {
     GUIEscritorioSGA.ServiceBodega.InsertRequest inValue = new GUIEscritorioSGA.ServiceBodega.InsertRequest();
     inValue.Body = new GUIEscritorioSGA.ServiceBodega.InsertRequestBody();
     inValue.Body.nuevoTipoProducto = nuevoTipoProducto;
     return(((GUIEscritorioSGA.ServiceBodega.WebServiceBodegaSoap)(this)).InsertAsync(inValue));
 }
 public UpdateRequestBody(GUIEscritorioSGA.ServiceBodega.MDBodega editableBodega)
 {
     this.editableBodega = editableBodega;
 }
 public InsertRequestBody(GUIEscritorioSGA.ServiceBodega.MDBodega nuevoTipoProducto)
 {
     this.nuevoTipoProducto = nuevoTipoProducto;
 }
 public BuscarResponseBody(GUIEscritorioSGA.ServiceBodega.MDBodega BuscarResult)
 {
     this.BuscarResult = BuscarResult;
 }