Esempio n. 1
0
 public System.Threading.Tasks.Task <BillPaymentGroupAssignment.FlowServices.PayFlowResponse> PayFlowAsync(string accNum, decimal amount)
 {
     BillPaymentGroupAssignment.FlowServices.PayFlowRequest inValue = new BillPaymentGroupAssignment.FlowServices.PayFlowRequest();
     inValue.Body        = new BillPaymentGroupAssignment.FlowServices.PayFlowRequestBody();
     inValue.Body.accNum = accNum;
     inValue.Body.amount = amount;
     return(((BillPaymentGroupAssignment.FlowServices.FlowConnectSoap)(this)).PayFlowAsync(inValue));
 }
Esempio n. 2
0
 public bool PayFlow(string accNum, decimal amount)
 {
     BillPaymentGroupAssignment.FlowServices.PayFlowRequest inValue = new BillPaymentGroupAssignment.FlowServices.PayFlowRequest();
     inValue.Body        = new BillPaymentGroupAssignment.FlowServices.PayFlowRequestBody();
     inValue.Body.accNum = accNum;
     inValue.Body.amount = amount;
     BillPaymentGroupAssignment.FlowServices.PayFlowResponse retVal = ((BillPaymentGroupAssignment.FlowServices.FlowConnectSoap)(this)).PayFlow(inValue);
     return(retVal.Body.PayFlowResult);
 }
Esempio n. 3
0
 System.Threading.Tasks.Task <BillPaymentGroupAssignment.FlowServices.PayFlowResponse> BillPaymentGroupAssignment.FlowServices.FlowConnectSoap.PayFlowAsync(BillPaymentGroupAssignment.FlowServices.PayFlowRequest request)
 {
     return(base.Channel.PayFlowAsync(request));
 }
Esempio n. 4
0
 BillPaymentGroupAssignment.FlowServices.PayFlowResponse BillPaymentGroupAssignment.FlowServices.FlowConnectSoap.PayFlow(BillPaymentGroupAssignment.FlowServices.PayFlowRequest request)
 {
     return(base.Channel.PayFlow(request));
 }