Ejemplo n.º 1
0
 public byte[] sendBill(string fileName, byte[] contentFile)
 {
     WinApp.Servicio.Soap.Documentos.sendBill inValue = new WinApp.Servicio.Soap.Documentos.sendBill();
     inValue.fileName    = fileName;
     inValue.contentFile = contentFile;
     WinApp.Servicio.Soap.Documentos.sendBillResponse retVal = ((WinApp.Servicio.Soap.Documentos.BizlinksOSE)(this)).sendBill(inValue);
     return(retVal.applicationResponse);
 }
Ejemplo n.º 2
0
 public byte[] sendBill(string fileName, byte[] contentFile, string partyType)
 {
     WinApp.Servicio.Soap.Documentos.sendBillRequest inValue = new WinApp.Servicio.Soap.Documentos.sendBillRequest();
     inValue.fileName    = fileName;
     inValue.contentFile = contentFile;
     inValue.partyType   = partyType;
     WinApp.Servicio.Soap.Documentos.sendBillResponse retVal = ((WinApp.Servicio.Soap.Documentos.billService)(this)).sendBill(inValue);
     return(retVal.applicationResponse);
 }