// Constructor public Reserva() { fecha = DateTime.Today; funcion = null; butaca = null; cliente = null; }
public Reserva(DateTime fecha, Funcion funcion, Butaca butaca, Cliente cliente) { this.fecha = fecha; this.funcion = funcion; this.butaca = butaca; this.cliente = cliente; }
public Sala(string nombre, int cantButacas, int tipo, Butaca[] butacas) { this.nombre = nombre; this.cantButacas = cantButacas; this.tipo = tipo; this.butacas = butacas; }