Пример #1
0
 public Orquesta(string nombre, string lugar, tipoOrquesta orquesta)
 {
     this.nombre  = nombre;
     this.lugar   = lugar;
     this.tipo    = orquesta;
     this.musicos = new List <Musico>();
 }
Пример #2
0
        public Orquesta(string nombre, string lugar, tipoOrquesta tipo)
        {
            this.nombre = nombre;
            this.lugar  = lugar;
            this.tipo   = tipo;

            this.muscios = new List <Muscio>();
        }
Пример #3
0
 public orquesta(string nombre, string lugar, string tipo)
 {
     this.nombre = nombre;
     this.lugar  = lugar;
     this.tipo   = tipo;
 }