public Exposicion(string nombre_Expositor, string nombre_Obra, string nombre, DateTime fecha, DateTime hora, Ciudad ciudad, int duracion, string lugar, int capacidad_Max, string tipo_Espectaculo) : base(tipo_Espectaculo, nombre, fecha, hora, ciudad, duracion, lugar, capacidad_Max)
 {
     Nombre_Expositor = nombre_Expositor ?? throw new ArgumentNullException(nameof(nombre_Expositor));
     Nombre_Obra      = nombre_Obra ?? throw new ArgumentNullException(nameof(nombre_Obra));
 }
Example #2
0
 public Concierto(string nombre_Banda, string nombre, DateTime fecha, DateTime hora, Ciudad ciudad, int duracion, string lugar, int capacidad_Max, string tipo_Espectaculo) : base
         (tipo_Espectaculo, nombre, fecha, hora, ciudad, duracion, lugar, capacidad_Max)
 {
     Nombre_Banda = nombre_Banda ?? throw new ArgumentNullException(nameof(nombre_Banda));
 }
Example #3
0
 public Teatro(string nombre, DateTime fecha, DateTime hora, Ciudad ciudad, int duracion, string lugar, int capacidad_Max, string tipo_Espectaculo) : base
         (tipo_Espectaculo, nombre, fecha, hora, ciudad, duracion, lugar, capacidad_Max)
 {
 }
Example #4
0
 public Espectaculo(string tipo_Espectaculo, string nombre, DateTime fecha, DateTime hora, Ciudad ciudad, int duracion, string lugar, int capacidad_Max)
 {
     this.nombre           = nombre ?? throw new ArgumentNullException(nameof(nombre));
     this.fecha            = fecha;
     this.hora             = hora;
     this.ciudad           = ciudad ?? throw new ArgumentNullException(nameof(ciudad));
     this.duracion         = duracion;
     this.lugar            = lugar ?? throw new ArgumentNullException(nameof(lugar));
     this.capacidad_Max    = capacidad_Max;
     this.tipo_Espectaculo = tipo_Espectaculo ?? throw new ArgumentNullException(nameof(tipo_Espectaculo));
 }
Example #5
0
 public Taquilla(Ciudad ciudad, string lugar, int nro_Boletas_Cliente)
 {
     this.ciudad         = ciudad ?? throw new ArgumentNullException(nameof(ciudad));
     Lugar               = lugar ?? throw new ArgumentNullException(nameof(lugar));
     Nro_Boletas_Cliente = nro_Boletas_Cliente;
 }
Example #6
0
 public Deporte(string nombre, DateTime fecha, DateTime hora, Ciudad ciudad, int duracion, string lugar, int capacidad_Max, string tipo_Espectaculo, string equipo1, string equipo2) : base(tipo_Espectaculo, nombre, fecha, hora, ciudad, duracion, lugar, capacidad_Max)
 {
     this.equipo1 = equipo1;
     this.equipo2 = equipo2;
 }