public void ExecuteFlow(string flowID, CompuFlowGateway.TestApplication.CFGateway.ArrayOfString keys, CompuFlowGateway.TestApplication.CFGateway.ArrayOfString values)
 {
     CompuFlowGateway.TestApplication.CFGateway.ExecuteFlowRequest inValue = new CompuFlowGateway.TestApplication.CFGateway.ExecuteFlowRequest();
     inValue.Body        = new CompuFlowGateway.TestApplication.CFGateway.ExecuteFlowRequestBody();
     inValue.Body.flowID = flowID;
     inValue.Body.keys   = keys;
     inValue.Body.values = values;
     CompuFlowGateway.TestApplication.CFGateway.ExecuteFlowResponse retVal = ((CompuFlowGateway.TestApplication.CFGateway.ExecuteFlowWebServiceSoap)(this)).ExecuteFlow(inValue);
 }
 public ExecuteFlowRequestBody(string flowID, CompuFlowGateway.TestApplication.CFGateway.ArrayOfString keys, CompuFlowGateway.TestApplication.CFGateway.ArrayOfString values)
 {
     this.flowID = flowID;
     this.keys   = keys;
     this.values = values;
 }
 public System.Threading.Tasks.Task <CompuFlowGateway.TestApplication.CFGateway.ExecuteFlowWithReturnResponse> ExecuteFlowWithReturnAsync(string flowID, CompuFlowGateway.TestApplication.CFGateway.ArrayOfString keys, CompuFlowGateway.TestApplication.CFGateway.ArrayOfString values)
 {
     CompuFlowGateway.TestApplication.CFGateway.ExecuteFlowWithReturnRequest inValue = new CompuFlowGateway.TestApplication.CFGateway.ExecuteFlowWithReturnRequest();
     inValue.Body        = new CompuFlowGateway.TestApplication.CFGateway.ExecuteFlowWithReturnRequestBody();
     inValue.Body.flowID = flowID;
     inValue.Body.keys   = keys;
     inValue.Body.values = values;
     return(((CompuFlowGateway.TestApplication.CFGateway.ExecuteFlowWebServiceSoap)(this)).ExecuteFlowWithReturnAsync(inValue));
 }