Example #1
0
 public System.Threading.Tasks.Task <WinApp.Servicio.Soap.Documentos.sendSummaryResponse> sendSummaryAsync(string fileName, byte[] contentFile, string partyType)
 {
     WinApp.Servicio.Soap.Documentos.sendSummaryRequest inValue = new WinApp.Servicio.Soap.Documentos.sendSummaryRequest();
     inValue.fileName    = fileName;
     inValue.contentFile = contentFile;
     inValue.partyType   = partyType;
     return(((WinApp.Servicio.Soap.Documentos.billService)(this)).sendSummaryAsync(inValue));
 }
Example #2
0
 public string sendSummary(string fileName, byte[] contentFile, string partyType)
 {
     WinApp.Servicio.Soap.Documentos.sendSummaryRequest inValue = new WinApp.Servicio.Soap.Documentos.sendSummaryRequest();
     inValue.fileName    = fileName;
     inValue.contentFile = contentFile;
     inValue.partyType   = partyType;
     WinApp.Servicio.Soap.Documentos.sendSummaryResponse retVal = ((WinApp.Servicio.Soap.Documentos.billService)(this)).sendSummary(inValue);
     return(retVal.ticket);
 }
Example #3
0
 System.Threading.Tasks.Task <WinApp.Servicio.Soap.Documentos.sendSummaryResponse> WinApp.Servicio.Soap.Documentos.billService.sendSummaryAsync(WinApp.Servicio.Soap.Documentos.sendSummaryRequest request)
 {
     return(base.Channel.sendSummaryAsync(request));
 }
Example #4
0
 WinApp.Servicio.Soap.Documentos.sendSummaryResponse WinApp.Servicio.Soap.Documentos.billService.sendSummary(WinApp.Servicio.Soap.Documentos.sendSummaryRequest request)
 {
     return(base.Channel.sendSummary(request));
 }