Exemplo n.º 1
0
 public Orquesta(string nombre, string lugar, tipoOrquesta orquesta)
 {
     this.nombre  = nombre;
     this.lugar   = lugar;
     this.tipo    = orquesta;
     this.musicos = new List <Musico>();
 }
Exemplo n.º 2
0
        public Orquesta(string nombre, string lugar, tipoOrquesta tipo)
        {
            this.nombre = nombre;
            this.lugar  = lugar;
            this.tipo   = tipo;

            this.muscios = new List <Muscio>();
        }
Exemplo n.º 3
0
 public orquesta(string nombre, string lugar, string tipo)
 {
     this.nombre = nombre;
     this.lugar  = lugar;
     this.tipo   = tipo;
 }