├── .gitignore ├── BoletoNetCore.Testes ├── BancoBanrisulCarteira1Tests.cs ├── BancoBradescoCarteira09.cs ├── BancoBrasilCarteira11_019Tests.cs ├── BancoBrasilCarteira17_019Tests.cs ├── BancoCaixaCarteiraSig14Tests.cs ├── BancoItauCarteira109Tests.cs ├── BancoItauCarteira112Tests.cs ├── BancoSantanderCarteira101Tests.cs ├── BancoSicoobCarteira1_01Tests.cs ├── BoletoNetCore.Testes.csproj ├── FatorVencimento.cs └── Utils.cs ├── BoletoNetCore.sln ├── BoletoNetCore ├── Arquivo │ ├── ArquivoRemessa.cs │ └── ArquivoRetorno.cs ├── Banco │ ├── Banco.cs │ ├── BancoBanrisul.cs │ ├── BancoBradesco.cs │ ├── BancoBrasil.cs │ ├── BancoCaixa.cs │ ├── BancoItau.cs │ ├── BancoSantander.cs │ ├── BancoSicoob.cs │ ├── Bancos.cs │ ├── Carteiras │ │ ├── BancoBanrisul │ │ │ └── BancoBanrisulCarteira1.cs │ │ ├── BancoBradesco │ │ │ └── BancoBradescoCarteira09.cs │ │ ├── BancoBrasil │ │ │ ├── BancoBrasilCarteira11.cs │ │ │ └── BancoBrasilCarteira17.cs │ │ ├── BancoCaixa │ │ │ └── BancoCaixaCarteiraSIG14.cs │ │ ├── BancoItau │ │ │ ├── BancoItauCarteira109.cs │ │ │ └── BancoItauCarteira112.cs │ │ ├── BancoSantander │ │ │ └── BancoSantanderCarteira101.cs │ │ ├── BancoSicoob │ │ │ └── BancoSincoobCarteira1.cs │ │ ├── CarteiraCodigoAttribute.cs │ │ ├── CarteiraFactory.cs │ │ └── ICarteira.cs │ └── IBanco.cs ├── Boleto │ ├── Boleto.cs │ ├── Boletos.cs │ ├── Cedente.cs │ ├── CodigoBarra.cs │ ├── ContaBancaria.cs │ ├── DemonstrativoValoresBoleto │ │ ├── GrupoDemonstrativo.cs │ │ └── ItemDemonstrativo.cs │ ├── Endereco.cs │ └── Sacado.cs ├── BoletoBancario.bmp ├── BoletoImpressao │ ├── BoletoBancario.cs │ ├── BoletoBancarioDesigner.cs │ ├── BoletoNet.css │ ├── BoletoNetPDF.css │ └── ImagemCodigoBarraHandler.cs ├── BoletoNetCore.csproj ├── Como Implementar um novo Banco ou Carteira.txt ├── Enums │ ├── Modulo11Algoritmo.cs │ ├── TipoArquivo.cs │ ├── TipoCarteira.cs │ ├── TipoCodigoBaixaDevolucao.cs │ ├── TipoCodigoProtesto.cs │ ├── TipoDistribuicaoBoleto.cs │ ├── TipoDocumento.cs │ ├── TipoEspecieDocumento.cs │ ├── TipoFormaCadastramento.cs │ └── TipoImpressaoBoleto.cs ├── Exceptions │ └── BoletoNetCoreException.cs ├── Extensions │ ├── DateTimeExtensions.cs │ └── StringExtensions.cs ├── Html.Designer.cs ├── Html.resx ├── Imagens │ ├── 001.jpg │ ├── 003.jpg │ ├── 004.jpg │ ├── 008.jpg │ ├── 021.jpg │ ├── 024.jpg │ ├── 027.jpg │ ├── 029.jpg │ ├── 033.jpg │ ├── 041.jpg │ ├── 047.jpg │ ├── 070.jpg │ ├── 085.jpg │ ├── 104.jpg │ ├── 151.jpg │ ├── 237.jpg │ ├── 244.jpg │ ├── 246.jpg │ ├── 263.jpg │ ├── 266.jpg │ ├── 275.jpg │ ├── 291.jpg │ ├── 320.jpg │ ├── 341.jpg │ ├── 347.jpg │ ├── 353.jpg │ ├── 356.jpg │ ├── 389.jpg │ ├── 392.jpg │ ├── 399.jpg │ ├── 409.jpg │ ├── 422.jpg │ ├── 424.jpg │ ├── 453.jpg │ ├── 479.jpg │ ├── 600.jpg │ ├── 604.jpg │ ├── 610.jpg │ ├── 623.jpg │ ├── 633.jpg │ ├── 637.jpg │ ├── 641.jpg │ ├── 643.jpg │ ├── 655.jpg │ ├── 702.jpg │ ├── 707.jpg │ ├── 721.jpg │ ├── 738.jpg │ ├── 741.jpg │ ├── 743.jpg │ ├── 745.jpg │ ├── 748.jpg │ ├── 749.jpg │ ├── 756.jpg │ ├── BoletoBancario.bmp │ ├── barra.gif │ ├── barrainterna.gif │ ├── corte.gif │ └── ponto.gif └── Util │ ├── BarCode2of5i.cs │ ├── BarCodeBase.cs │ ├── Cnab.cs │ ├── DateInterval.cs │ ├── Extensions.cs │ ├── OrdenacaoPorPosEDI.cs │ ├── TCampoRegistroEDI.cs │ ├── TRegistroEDI.cs │ ├── TTipoRegistroEDI.cs │ ├── TTiposDadoEDI.cs │ └── Utils.cs ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/.gitignore -------------------------------------------------------------------------------- /BoletoNetCore.Testes/BancoBanrisulCarteira1Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore.Testes/BancoBanrisulCarteira1Tests.cs -------------------------------------------------------------------------------- /BoletoNetCore.Testes/BancoBradescoCarteira09.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore.Testes/BancoBradescoCarteira09.cs -------------------------------------------------------------------------------- /BoletoNetCore.Testes/BancoBrasilCarteira11_019Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore.Testes/BancoBrasilCarteira11_019Tests.cs -------------------------------------------------------------------------------- /BoletoNetCore.Testes/BancoBrasilCarteira17_019Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore.Testes/BancoBrasilCarteira17_019Tests.cs -------------------------------------------------------------------------------- /BoletoNetCore.Testes/BancoCaixaCarteiraSig14Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore.Testes/BancoCaixaCarteiraSig14Tests.cs -------------------------------------------------------------------------------- /BoletoNetCore.Testes/BancoItauCarteira109Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore.Testes/BancoItauCarteira109Tests.cs -------------------------------------------------------------------------------- /BoletoNetCore.Testes/BancoItauCarteira112Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore.Testes/BancoItauCarteira112Tests.cs -------------------------------------------------------------------------------- /BoletoNetCore.Testes/BancoSantanderCarteira101Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore.Testes/BancoSantanderCarteira101Tests.cs -------------------------------------------------------------------------------- /BoletoNetCore.Testes/BancoSicoobCarteira1_01Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore.Testes/BancoSicoobCarteira1_01Tests.cs -------------------------------------------------------------------------------- /BoletoNetCore.Testes/BoletoNetCore.Testes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore.Testes/BoletoNetCore.Testes.csproj -------------------------------------------------------------------------------- /BoletoNetCore.Testes/FatorVencimento.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore.Testes/FatorVencimento.cs -------------------------------------------------------------------------------- /BoletoNetCore.Testes/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore.Testes/Utils.cs -------------------------------------------------------------------------------- /BoletoNetCore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore.sln -------------------------------------------------------------------------------- /BoletoNetCore/Arquivo/ArquivoRemessa.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Arquivo/ArquivoRemessa.cs -------------------------------------------------------------------------------- /BoletoNetCore/Arquivo/ArquivoRetorno.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Arquivo/ArquivoRetorno.cs -------------------------------------------------------------------------------- /BoletoNetCore/Banco/Banco.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Banco/Banco.cs -------------------------------------------------------------------------------- /BoletoNetCore/Banco/BancoBanrisul.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Banco/BancoBanrisul.cs -------------------------------------------------------------------------------- /BoletoNetCore/Banco/BancoBradesco.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Banco/BancoBradesco.cs -------------------------------------------------------------------------------- /BoletoNetCore/Banco/BancoBrasil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Banco/BancoBrasil.cs -------------------------------------------------------------------------------- /BoletoNetCore/Banco/BancoCaixa.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Banco/BancoCaixa.cs -------------------------------------------------------------------------------- /BoletoNetCore/Banco/BancoItau.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Banco/BancoItau.cs -------------------------------------------------------------------------------- /BoletoNetCore/Banco/BancoSantander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Banco/BancoSantander.cs -------------------------------------------------------------------------------- /BoletoNetCore/Banco/BancoSicoob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Banco/BancoSicoob.cs -------------------------------------------------------------------------------- /BoletoNetCore/Banco/Bancos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Banco/Bancos.cs -------------------------------------------------------------------------------- /BoletoNetCore/Banco/Carteiras/BancoBanrisul/BancoBanrisulCarteira1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Banco/Carteiras/BancoBanrisul/BancoBanrisulCarteira1.cs -------------------------------------------------------------------------------- /BoletoNetCore/Banco/Carteiras/BancoBradesco/BancoBradescoCarteira09.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Banco/Carteiras/BancoBradesco/BancoBradescoCarteira09.cs -------------------------------------------------------------------------------- /BoletoNetCore/Banco/Carteiras/BancoBrasil/BancoBrasilCarteira11.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Banco/Carteiras/BancoBrasil/BancoBrasilCarteira11.cs -------------------------------------------------------------------------------- /BoletoNetCore/Banco/Carteiras/BancoBrasil/BancoBrasilCarteira17.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Banco/Carteiras/BancoBrasil/BancoBrasilCarteira17.cs -------------------------------------------------------------------------------- /BoletoNetCore/Banco/Carteiras/BancoCaixa/BancoCaixaCarteiraSIG14.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Banco/Carteiras/BancoCaixa/BancoCaixaCarteiraSIG14.cs -------------------------------------------------------------------------------- /BoletoNetCore/Banco/Carteiras/BancoItau/BancoItauCarteira109.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Banco/Carteiras/BancoItau/BancoItauCarteira109.cs -------------------------------------------------------------------------------- /BoletoNetCore/Banco/Carteiras/BancoItau/BancoItauCarteira112.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Banco/Carteiras/BancoItau/BancoItauCarteira112.cs -------------------------------------------------------------------------------- /BoletoNetCore/Banco/Carteiras/BancoSantander/BancoSantanderCarteira101.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Banco/Carteiras/BancoSantander/BancoSantanderCarteira101.cs -------------------------------------------------------------------------------- /BoletoNetCore/Banco/Carteiras/BancoSicoob/BancoSincoobCarteira1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Banco/Carteiras/BancoSicoob/BancoSincoobCarteira1.cs -------------------------------------------------------------------------------- /BoletoNetCore/Banco/Carteiras/CarteiraCodigoAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Banco/Carteiras/CarteiraCodigoAttribute.cs -------------------------------------------------------------------------------- /BoletoNetCore/Banco/Carteiras/CarteiraFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Banco/Carteiras/CarteiraFactory.cs -------------------------------------------------------------------------------- /BoletoNetCore/Banco/Carteiras/ICarteira.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Banco/Carteiras/ICarteira.cs -------------------------------------------------------------------------------- /BoletoNetCore/Banco/IBanco.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Banco/IBanco.cs -------------------------------------------------------------------------------- /BoletoNetCore/Boleto/Boleto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Boleto/Boleto.cs -------------------------------------------------------------------------------- /BoletoNetCore/Boleto/Boletos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Boleto/Boletos.cs -------------------------------------------------------------------------------- /BoletoNetCore/Boleto/Cedente.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Boleto/Cedente.cs -------------------------------------------------------------------------------- /BoletoNetCore/Boleto/CodigoBarra.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Boleto/CodigoBarra.cs -------------------------------------------------------------------------------- /BoletoNetCore/Boleto/ContaBancaria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Boleto/ContaBancaria.cs -------------------------------------------------------------------------------- /BoletoNetCore/Boleto/DemonstrativoValoresBoleto/GrupoDemonstrativo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Boleto/DemonstrativoValoresBoleto/GrupoDemonstrativo.cs -------------------------------------------------------------------------------- /BoletoNetCore/Boleto/DemonstrativoValoresBoleto/ItemDemonstrativo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Boleto/DemonstrativoValoresBoleto/ItemDemonstrativo.cs -------------------------------------------------------------------------------- /BoletoNetCore/Boleto/Endereco.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Boleto/Endereco.cs -------------------------------------------------------------------------------- /BoletoNetCore/Boleto/Sacado.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Boleto/Sacado.cs -------------------------------------------------------------------------------- /BoletoNetCore/BoletoBancario.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/BoletoBancario.bmp -------------------------------------------------------------------------------- /BoletoNetCore/BoletoImpressao/BoletoBancario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/BoletoImpressao/BoletoBancario.cs -------------------------------------------------------------------------------- /BoletoNetCore/BoletoImpressao/BoletoBancarioDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/BoletoImpressao/BoletoBancarioDesigner.cs -------------------------------------------------------------------------------- /BoletoNetCore/BoletoImpressao/BoletoNet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/BoletoImpressao/BoletoNet.css -------------------------------------------------------------------------------- /BoletoNetCore/BoletoImpressao/BoletoNetPDF.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/BoletoImpressao/BoletoNetPDF.css -------------------------------------------------------------------------------- /BoletoNetCore/BoletoImpressao/ImagemCodigoBarraHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/BoletoImpressao/ImagemCodigoBarraHandler.cs -------------------------------------------------------------------------------- /BoletoNetCore/BoletoNetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/BoletoNetCore.csproj -------------------------------------------------------------------------------- /BoletoNetCore/Como Implementar um novo Banco ou Carteira.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Como Implementar um novo Banco ou Carteira.txt -------------------------------------------------------------------------------- /BoletoNetCore/Enums/Modulo11Algoritmo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Enums/Modulo11Algoritmo.cs -------------------------------------------------------------------------------- /BoletoNetCore/Enums/TipoArquivo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Enums/TipoArquivo.cs -------------------------------------------------------------------------------- /BoletoNetCore/Enums/TipoCarteira.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Enums/TipoCarteira.cs -------------------------------------------------------------------------------- /BoletoNetCore/Enums/TipoCodigoBaixaDevolucao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Enums/TipoCodigoBaixaDevolucao.cs -------------------------------------------------------------------------------- /BoletoNetCore/Enums/TipoCodigoProtesto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Enums/TipoCodigoProtesto.cs -------------------------------------------------------------------------------- /BoletoNetCore/Enums/TipoDistribuicaoBoleto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Enums/TipoDistribuicaoBoleto.cs -------------------------------------------------------------------------------- /BoletoNetCore/Enums/TipoDocumento.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Enums/TipoDocumento.cs -------------------------------------------------------------------------------- /BoletoNetCore/Enums/TipoEspecieDocumento.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Enums/TipoEspecieDocumento.cs -------------------------------------------------------------------------------- /BoletoNetCore/Enums/TipoFormaCadastramento.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Enums/TipoFormaCadastramento.cs -------------------------------------------------------------------------------- /BoletoNetCore/Enums/TipoImpressaoBoleto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Enums/TipoImpressaoBoleto.cs -------------------------------------------------------------------------------- /BoletoNetCore/Exceptions/BoletoNetCoreException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Exceptions/BoletoNetCoreException.cs -------------------------------------------------------------------------------- /BoletoNetCore/Extensions/DateTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Extensions/DateTimeExtensions.cs -------------------------------------------------------------------------------- /BoletoNetCore/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /BoletoNetCore/Html.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Html.Designer.cs -------------------------------------------------------------------------------- /BoletoNetCore/Html.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Html.resx -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/001.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/003.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/004.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/008.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/021.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/024.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/027.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/029.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/033.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/033.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/041.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/041.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/047.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/047.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/070.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/070.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/085.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/085.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/104.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/104.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/151.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/151.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/237.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/237.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/244.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/244.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/246.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/246.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/263.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/263.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/266.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/266.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/275.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/275.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/291.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/291.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/320.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/320.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/341.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/341.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/347.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/347.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/353.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/353.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/356.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/356.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/389.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/389.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/392.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/392.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/399.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/399.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/409.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/409.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/422.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/422.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/424.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/424.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/453.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/453.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/479.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/479.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/600.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/604.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/604.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/610.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/610.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/623.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/623.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/633.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/633.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/637.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/637.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/641.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/641.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/643.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/643.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/655.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/655.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/702.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/702.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/707.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/707.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/721.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/721.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/738.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/738.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/741.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/741.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/743.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/743.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/745.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/745.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/748.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/748.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/749.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/749.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/756.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/756.jpg -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/BoletoBancario.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/BoletoBancario.bmp -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/barra.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/barra.gif -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/barrainterna.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/barrainterna.gif -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/corte.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/corte.gif -------------------------------------------------------------------------------- /BoletoNetCore/Imagens/ponto.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Imagens/ponto.gif -------------------------------------------------------------------------------- /BoletoNetCore/Util/BarCode2of5i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Util/BarCode2of5i.cs -------------------------------------------------------------------------------- /BoletoNetCore/Util/BarCodeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Util/BarCodeBase.cs -------------------------------------------------------------------------------- /BoletoNetCore/Util/Cnab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Util/Cnab.cs -------------------------------------------------------------------------------- /BoletoNetCore/Util/DateInterval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Util/DateInterval.cs -------------------------------------------------------------------------------- /BoletoNetCore/Util/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Util/Extensions.cs -------------------------------------------------------------------------------- /BoletoNetCore/Util/OrdenacaoPorPosEDI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Util/OrdenacaoPorPosEDI.cs -------------------------------------------------------------------------------- /BoletoNetCore/Util/TCampoRegistroEDI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Util/TCampoRegistroEDI.cs -------------------------------------------------------------------------------- /BoletoNetCore/Util/TRegistroEDI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Util/TRegistroEDI.cs -------------------------------------------------------------------------------- /BoletoNetCore/Util/TTipoRegistroEDI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Util/TTipoRegistroEDI.cs -------------------------------------------------------------------------------- /BoletoNetCore/Util/TTiposDadoEDI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Util/TTiposDadoEDI.cs -------------------------------------------------------------------------------- /BoletoNetCore/Util/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/BoletoNetCore/Util/Utils.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tagliatti/BoletoNetCore/HEAD/README.md --------------------------------------------------------------------------------