Class: GuiaMais::Cliente

Inherits:
Object
  • Object
show all
Defined in:
lib/guia_mais.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

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

#bairroObject (readonly)

Returns the value of attribute bairro.



73
74
75
# File 'lib/guia_mais.rb', line 73

def bairro
  @bairro
end

#categoriaObject (readonly)

Returns the value of attribute categoria.



73
74
75
# File 'lib/guia_mais.rb', line 73

def categoria
  @categoria
end

#cepObject (readonly)

Returns the value of attribute cep.



73
74
75
# File 'lib/guia_mais.rb', line 73

def cep
  @cep
end

#enderecoObject (readonly)

Returns the value of attribute endereco.



73
74
75
# File 'lib/guia_mais.rb', line 73

def endereco
  @endereco
end

#nomeObject (readonly)

Returns the value of attribute nome.



73
74
75
# File 'lib/guia_mais.rb', line 73

def nome
  @nome
end

#telefoneObject (readonly)

Returns the value of attribute telefone.



73
74
75
# File 'lib/guia_mais.rb', line 73

def telefone
  @telefone
end

Class Method Details

.buscar(oque, params) ⇒ Object



83
84
85
# File 'lib/guia_mais.rb', line 83

def self.buscar(oque, params)
  Minerador.buscar(oque, params)
end