Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@pedrolopesme
Created November 11, 2013 21:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pedrolopesme/7420458 to your computer and use it in GitHub Desktop.
Save pedrolopesme/7420458 to your computer and use it in GitHub Desktop.
class BoletoItau
def initialize(valor, vencimento)
@valor = valor
@vencimento = vencimento
end
def gerar_boleto
puts("Header do Boleto para o Banco Itau")
puts("Valor:" + @valor )
puts("Vencimento:" + @vencimento )
puts("Footer do Boleto : Esse boleto deve ser pago no Banco Itau mais proximo")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment