Exemplo n.º 1
0
        static void Main()
        {
            Gestionador gestionador;

            gestionador = new Gestionador();

            if (gestionador.Locales.Count == 0)
            {
                List <Local> locales     = new List <Local>();
                Cine         cine        = new Cine(1, "16:30", "Cine", 20);
                Tienda       tienda      = new Tienda(2, "12:30", "tienda", "ropa");
                Restaurante  restaurante = new Restaurante(3, "13:00", "restaurante", true);
                Recreacion   recreacion  = new Recreacion(4, "22:00", "Disco", "Barra libre");

                locales.Add(cine);
                locales.Add(tienda);
                locales.Add(restaurante);
                locales.Add(recreacion);

                gestionador.Locales = locales;
            }

            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1(gestionador));
        }
Exemplo n.º 2
0
 public Form1(Gestionador gestionador)
 {
     this.gestionador = gestionador;
     InitializeComponent();
     foreach (Local local in  this.gestionador.Locales)
     {
         listBox1.Items.Add(local.Show());
     }
 }