static void mostraHorasTrabalhas(Gerente obj) { Console.WriteLine("Indique o numero de horas trabalhadas:"); double horas = lervalorDouble(); Console.WriteLine("o salário é: " + obj.calcSal(horas)); }
static void alteraValorHora(Gerente obj) { Console.WriteLine("Indique o novo valorHora"); double valor = lervalorDouble(); obj.setValorHora(valor); Console.WriteLine("valorHora alterado com sucesso"); System.Threading.Thread.Sleep(1000); }
public Gerente(Gerente g) { this.Especialidade = g.Especialidade; this.Extensao = g.Extensao; this.id = g.id; this.nome = g.nome; this.dataNasc = g.dataNasc; this.eMail = g.eMail; this.valorHora = g.valorHora; }
static void gerenteSelecionado(Gerente obj) { Console.Clear(); Console.WriteLine(obj.getNome() + " " + obj.getDataNasc() + " " + obj.GetEMail() + " " + obj.getValorHora() + " " + obj.Especialidade + " " + obj.Extensao + "\n"); }
static void mostraIdade(Gerente obj) { Console.WriteLine("a idade do Gerente é: " + obj.calcIdade()); System.Threading.Thread.Sleep(2000); }