Class: Teodoro::Empresa::ContratosDeTrabalhoSemVinculo::Contrato

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/teodoro/empresa/contratos_de_trabalho_sem_vinculo.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#data_do_termino=(value) ⇒ Object

Sets the attribute data_do_termino

Parameters:

  • value

    the value to set the attribute data_do_termino to.



66
67
68
# File 'lib/teodoro/empresa/contratos_de_trabalho_sem_vinculo.rb', line 66

def data_do_termino=(value)
  @data_do_termino = value
end

#inicios_de_afastamentoObject

Returns the value of attribute inicios_de_afastamento.



64
65
66
# File 'lib/teodoro/empresa/contratos_de_trabalho_sem_vinculo.rb', line 64

def inicios_de_afastamento
  @inicios_de_afastamento
end

Instance Method Details

#ativo?(data) ⇒ Boolean

Returns:

  • (Boolean)


68
69
70
# File 'lib/teodoro/empresa/contratos_de_trabalho_sem_vinculo.rb', line 68

def ativo?(data)
  data_de_inicio <= data && (!data_do_termino || data_do_termino >= data)
end