示例#1
0
 public System.Threading.Tasks.Task <WinApp.Servicio.Soap.Documentos.sendPackResponse> sendPackAsync(string fileName, byte[] contentFile, string partyType)
 {
     WinApp.Servicio.Soap.Documentos.sendPackRequest inValue = new WinApp.Servicio.Soap.Documentos.sendPackRequest();
     inValue.fileName    = fileName;
     inValue.contentFile = contentFile;
     inValue.partyType   = partyType;
     return(((WinApp.Servicio.Soap.Documentos.billService)(this)).sendPackAsync(inValue));
 }
示例#2
0
 public string sendPack(string fileName, byte[] contentFile, string partyType)
 {
     WinApp.Servicio.Soap.Documentos.sendPackRequest inValue = new WinApp.Servicio.Soap.Documentos.sendPackRequest();
     inValue.fileName    = fileName;
     inValue.contentFile = contentFile;
     inValue.partyType   = partyType;
     WinApp.Servicio.Soap.Documentos.sendPackResponse retVal = ((WinApp.Servicio.Soap.Documentos.billService)(this)).sendPack(inValue);
     return(retVal.ticket);
 }
示例#3
0
 System.Threading.Tasks.Task <WinApp.Servicio.Soap.Documentos.sendPackResponse> WinApp.Servicio.Soap.Documentos.billService.sendPackAsync(WinApp.Servicio.Soap.Documentos.sendPackRequest request)
 {
     return(base.Channel.sendPackAsync(request));
 }
示例#4
0
 WinApp.Servicio.Soap.Documentos.sendPackResponse WinApp.Servicio.Soap.Documentos.billService.sendPack(WinApp.Servicio.Soap.Documentos.sendPackRequest request)
 {
     return(base.Channel.sendPack(request));
 }