Example #1
0
 public System.Threading.Tasks.Task <Services.ServiceReference1.sendBillResponse> sendBillAsync(string fileName, byte[] contentFile, string partyType)
 {
     Services.ServiceReference1.sendBillRequest inValue = new Services.ServiceReference1.sendBillRequest();
     inValue.fileName    = fileName;
     inValue.contentFile = contentFile;
     inValue.partyType   = partyType;
     return(((Services.ServiceReference1.billService)(this)).sendBillAsync(inValue));
 }
Example #2
0
 public byte[] sendBill(string fileName, byte[] contentFile, string partyType)
 {
     Services.ServiceReference1.sendBillRequest inValue = new Services.ServiceReference1.sendBillRequest();
     inValue.fileName    = fileName;
     inValue.contentFile = contentFile;
     inValue.partyType   = partyType;
     Services.ServiceReference1.sendBillResponse retVal = ((Services.ServiceReference1.billService)(this)).sendBill(inValue);
     return(retVal.applicationResponse);
 }
Example #3
0
 System.Threading.Tasks.Task <Services.ServiceReference1.sendBillResponse> Services.ServiceReference1.billService.sendBillAsync(Services.ServiceReference1.sendBillRequest request)
 {
     return(base.Channel.sendBillAsync(request));
 }
Example #4
0
 Services.ServiceReference1.sendBillResponse Services.ServiceReference1.billService.sendBill(Services.ServiceReference1.sendBillRequest request)
 {
     return(base.Channel.sendBill(request));
 }