public Evento(int id, String nombre, String descripcion, float costo, Boolean estado, Persona persona, Ubicacion ubicacion, Categoria categoria, TipoEvento tipoEvento, Horario horario) { this.id = id; this.nombre = nombre; this.descripcion = descripcion; this.persona = persona; this.costo = costo; this.ubicacion = ubicacion; this.categoria = categoria; this.tipoEvento = tipoEvento; this.horario = horario; this.estado = estado; }
public void addRepresentado(Persona per) { if (this._representados == null) this._representados = new List<Persona>(); this._representados.Add(per); }