public Computador(string placaMae, string proc, string hd, string ram, string nomePC, string grupoTrabalho, SistemaOperacional so) { this.NomePlacaMae = placaMae; this.Processador = proc; this.Hd = hd; this.MemoriaRam = ram; this.SistemaOperacional = so; this.NomeComputador = nomePC; this.GrupoTrabalho = grupoTrabalho; }
public void Update(Computador novo) { this.NomePlacaMae = novo.NomePlacaMae; this.Processador = novo.Processador; this.Hd = novo.Hd; this.MemoriaRam = novo.MemoriaRam; this.SistemaOperacional = novo.SistemaOperacional; this.NomeComputador = novo.NomeComputador; this.GrupoTrabalho = novo.GrupoTrabalho; }