Class: Consulta

Inherits:
Individuo show all
Defined in:
lib/menud/menud.rb

Overview

  • method initialize

  • method to_s

  • method to_f

  • method to_i

Instance Attribute Summary collapse

Attributes inherited from Individuo

#apellidos, #cadera, #cintura, #edad, #efecto_t_a, #factor_actvf, #gasto_e_basal, #gasto_e_total, #gasto_ef, #genero, #imc, #nombre, #peso, #peso_t_i, #porcentgrasa, #rcc, #talla

Instance Method Summary collapse

Methods inherited from Individuo

#<=>, #efecto_termogeno_alimentos, #gasto_actividadf, #gasto_energetico_basal, #gasto_energetico_t, #peso_total_ideal

Constructor Details

#initialize(nombre, apellidos, edad, genero, peso, talla, cadera, cintura, imc, porcentgrasa, rcc, peso_t_i, gasto_e_basal, efecto_t_a, gasto_ef, factor_actvf, gasto_e_total, paciente, tratamiento) ⇒ Consulta

Method to initialize every anthropometric measures and get if this person is patient and have a treatment already assignment



170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
# File 'lib/menud/menud.rb', line 170

def initialize(nombre, apellidos, edad, genero, peso, talla, cadera, cintura, imc, porcentgrasa, rcc, peso_t_i, gasto_e_basal, efecto_t_a, gasto_ef, factor_actvf, gasto_e_total, paciente, tratamiento)

        
        super :nombre, :apellidos, :edad, :genero, :peso, :talla, :cadera, :cintura, :imc, :porcentgrasa, :rcc, :peso_t_i, :gasto_e_basal, :efecto_t_a, :gasto_ef, :factor_actvf, :gasto_e_total
        
                    
                @nombre = nombre
                @apellidos = apellidos
                @edad = edad
                @genero = genero
                @peso = peso
                @talla = talla
                @cadera = cadera
                @cintura = cintura
                @imc = imc
                @porcentgrasa = porcentgrasa
                @rcc = rcc
                @peso_t_i = peso_t_i
                @gasto_e_basal = gasto_e_basal
                @efecto_t_a = efecto_t_a
                @gasto_ef = gasto_ef
                @factor_actvf = factor_actvf
                @gasto_e_total = gasto_e_total
                @paciente = paciente
                @tratamiento = tratamiento
                
                    
                    
end

Instance Attribute Details

#pacienteObject

Returns the value of attribute paciente.



167
168
169
# File 'lib/menud/menud.rb', line 167

def paciente
  @paciente
end

#tratamientoObject

Returns the value of attribute tratamiento.



167
168
169
# File 'lib/menud/menud.rb', line 167

def tratamiento
  @tratamiento
end