Example #1
0
 public string sendPack(string fileName, byte[] contentFile)
 {
     WinApp.Servicio.Soap.Documentos.sendPack inValue = new WinApp.Servicio.Soap.Documentos.sendPack();
     inValue.fileName    = fileName;
     inValue.contentFile = contentFile;
     WinApp.Servicio.Soap.Documentos.sendPackResponse retVal = ((WinApp.Servicio.Soap.Documentos.BizlinksOSE)(this)).sendPack(inValue);
     return(retVal.ticket);
 }
Example #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);
 }