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