Exemple #1
0
        public belRecepcao(string sLoteXml, X509Certificate2 cert, bel.NFes.tcLoteRps objLoteRpsAlter)
        {
            this.sLoteXml = sLoteXml;
            this.cert = cert;
            this.objLoteRpsAlter = objLoteRpsAlter;

            TransmitirLote();
        }
Exemple #2
0
        public daoRecepcao(string sReciboProt, bel.NFes.tcLoteRps objLoteRpsAlter)
        {
            this.sReciboProt = sReciboProt;
            this.objLoteRpsAlter = objLoteRpsAlter;

        }
Exemple #3
0
 public void GravaRecibo(string sReciboProt, bel.NFes.tcLoteRps objLoteRpsAlter)
 {
     try
     {
         for (int i = 0; i < objLoteRpsAlter.Rps.Count; i++)
         {
             SalvaRecibo(sReciboProt, objLoteRpsAlter.Rps[i].InfRps.IdentificacaoRps.Nfseq);
         }
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }