Exemplo n.º 1
0
 public System.Threading.Tasks.Task <Sunat.sendPackResponse> sendPackAsync(string fileName, byte[] contentFile, string partyType)
 {
     Sunat.sendPackRequest inValue = new Sunat.sendPackRequest();
     inValue.fileName    = fileName;
     inValue.contentFile = contentFile;
     inValue.partyType   = partyType;
     return(((Sunat.billService)(this)).sendPackAsync(inValue));
 }
Exemplo n.º 2
0
 public string sendPack(string fileName, byte[] contentFile, string partyType)
 {
     Sunat.sendPackRequest inValue = new Sunat.sendPackRequest();
     inValue.fileName    = fileName;
     inValue.contentFile = contentFile;
     inValue.partyType   = partyType;
     Sunat.sendPackResponse retVal = ((Sunat.billService)(this)).sendPack(inValue);
     return(retVal.ticket);
 }
Exemplo n.º 3
0
 System.Threading.Tasks.Task <Sunat.sendPackResponse> Sunat.billService.sendPackAsync(Sunat.sendPackRequest request)
 {
     return(base.Channel.sendPackAsync(request));
 }
Exemplo n.º 4
0
 Sunat.sendPackResponse Sunat.billService.sendPack(Sunat.sendPackRequest request)
 {
     return(base.Channel.sendPack(request));
 }