Ejemplo n.º 1
0
 public System.Threading.Tasks.Task <BoatManagement.ServiceParameter.InsertParameterResponse> InsertParameterAsync(int ID_Position, int speed, int waterlevel, int wind, string weather)
 {
     BoatManagement.ServiceParameter.InsertParameterRequest inValue = new BoatManagement.ServiceParameter.InsertParameterRequest();
     inValue.Body             = new BoatManagement.ServiceParameter.InsertParameterRequestBody();
     inValue.Body.ID_Position = ID_Position;
     inValue.Body.speed       = speed;
     inValue.Body.waterlevel  = waterlevel;
     inValue.Body.wind        = wind;
     inValue.Body.weather     = weather;
     return(((BoatManagement.ServiceParameter.ServiceParameterSoap)(this)).InsertParameterAsync(inValue));
 }
Ejemplo n.º 2
0
 public void InsertParameter(int ID_Position, int speed, int waterlevel, int wind, string weather)
 {
     BoatManagement.ServiceParameter.InsertParameterRequest inValue = new BoatManagement.ServiceParameter.InsertParameterRequest();
     inValue.Body             = new BoatManagement.ServiceParameter.InsertParameterRequestBody();
     inValue.Body.ID_Position = ID_Position;
     inValue.Body.speed       = speed;
     inValue.Body.waterlevel  = waterlevel;
     inValue.Body.wind        = wind;
     inValue.Body.weather     = weather;
     BoatManagement.ServiceParameter.InsertParameterResponse retVal = ((BoatManagement.ServiceParameter.ServiceParameterSoap)(this)).InsertParameter(inValue);
 }
Ejemplo n.º 3
0
 System.Threading.Tasks.Task <BoatManagement.ServiceParameter.InsertParameterResponse> BoatManagement.ServiceParameter.ServiceParameterSoap.InsertParameterAsync(BoatManagement.ServiceParameter.InsertParameterRequest request)
 {
     return(base.Channel.InsertParameterAsync(request));
 }
Ejemplo n.º 4
0
 BoatManagement.ServiceParameter.InsertParameterResponse BoatManagement.ServiceParameter.ServiceParameterSoap.InsertParameter(BoatManagement.ServiceParameter.InsertParameterRequest request)
 {
     return(base.Channel.InsertParameter(request));
 }