Class: GuiaMais::Cliente
- Inherits:
-
Object
- Object
- GuiaMais::Cliente
- Defined in:
- lib/guia_mais.rb
Instance Attribute Summary collapse
-
#bairro ⇒ Object
readonly
Returns the value of attribute bairro.
-
#categoria ⇒ Object
readonly
Returns the value of attribute categoria.
-
#cep ⇒ Object
readonly
Returns the value of attribute cep.
-
#endereco ⇒ Object
readonly
Returns the value of attribute endereco.
-
#nome ⇒ Object
readonly
Returns the value of attribute nome.
-
#telefone ⇒ Object
readonly
Returns the value of attribute telefone.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(nome, telefone, endereco, bairro, cep, categoria) ⇒ Cliente
constructor
A new instance of Cliente.
Constructor Details
#initialize(nome, telefone, endereco, bairro, cep, categoria) ⇒ Cliente
Returns a new instance of Cliente.
74 75 76 77 78 79 80 81 |
# File 'lib/guia_mais.rb', line 74 def initialize(nome, telefone, endereco, bairro, cep, categoria) @nome = nome @telefone = telefone @endereco = endereco @bairro = bairro @cep = cep @categoria = categoria end |
Instance Attribute Details
#bairro ⇒ Object (readonly)
Returns the value of attribute bairro.
73 74 75 |
# File 'lib/guia_mais.rb', line 73 def bairro @bairro end |
#categoria ⇒ Object (readonly)
Returns the value of attribute categoria.
73 74 75 |
# File 'lib/guia_mais.rb', line 73 def categoria @categoria end |
#cep ⇒ Object (readonly)
Returns the value of attribute cep.
73 74 75 |
# File 'lib/guia_mais.rb', line 73 def cep @cep end |
#endereco ⇒ Object (readonly)
Returns the value of attribute endereco.
73 74 75 |
# File 'lib/guia_mais.rb', line 73 def endereco @endereco end |
#nome ⇒ Object (readonly)
Returns the value of attribute nome.
73 74 75 |
# File 'lib/guia_mais.rb', line 73 def nome @nome end |
#telefone ⇒ Object (readonly)
Returns the value of attribute telefone.
73 74 75 |
# File 'lib/guia_mais.rb', line 73 def telefone @telefone end |