static void Main(string[] args) { var aluno = new Aluno(); aluno.Matricula = 123; aluno.Nome = "Rafael"; aluno.Estudar(); aluno.Dormir(); var funcionario = new Funcionario(); funcionario.Nome = "Pedro"; funcionario.Departamento = "Desenvolvimento"; funcionario.Trabalhando(); Console.ReadLine(); }
static void Main(string[] args) { Aluno gp = new Aluno(); gp.Matricula = 123; gp.Nome = "Guinther"; gp.Estudar(); gp.Dormir(); Funcionario rp = new Funcionario(); rp.Departamento = "Desenvolvimento"; rp.Nome = "Rudolfo"; rp.Trabalhar(); rp.Dormir(); Console.ReadLine(); }
static void Main(string[] args) { Aluno a = new Aluno(); a.Matricula = 123; a.Nome = "Alef"; a.Estudar(); a.Dormir(); Funcionario f = new Funcionario(); f.Nome = "João"; f.Departamento = "Portaria"; f.Trabalhar(); f.Dormir(); Console.ReadLine(); }
static void Main(string[] args) { var aluno = new Aluno { Nome = "Glaucia Lemos", Matricula = 1235 }; aluno.Estudar(); aluno.Dormir(); var funcionario = new Funcionario { Nome = "Jake Lemos", Departamento = "Secretaria" }; funcionario.Trabalhar(); funcionario.Dormir(); Console.ReadLine(); }