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