Beispiel #1
0
        public int AdicionarInstrumento(Instrumento intr)
        {
            if (this.Toca[0] != null)
            {
                throw new Exception("O integrante já tem instrumento atrinbuído");
            }

            this.Toca[0] = intr;
            return(Toca.Length);
        }
Beispiel #2
0
        public int TrocarInstrumento(Instrumento intr)
        {
            if (this.Toca[0] == null)
            {
                throw new Exception("O integrante não tem instrumento atribuído");
            }

            this.Toca[0] = intr;
            return(Toca.Length);
        }
Beispiel #3
0
 public Integrante(string nome, Instrumento instr)
 {
     this.Toca = new Instrumento[1];
     Nome      = nome;
     Toca[0]   = instr;
 }