Ejemplo n.º 1
0
        private void BackButton_Click(object sender, EventArgs e)
        {
            Form ActualWindow = this;

            WindowControl.TransitInterface(ref ActualWindow, (Form) new MainInterface(ref system));
        }
Ejemplo n.º 2
0
        private void GetReservationsBtn_Click(object sender, EventArgs e)
        {
            Form thisWindow = this;

            WindowControl.TransitInterface(ref thisWindow, (Form) new Interfaces.ReservationGetter(ref system));
        }
Ejemplo n.º 3
0
        private void MakeReservationButton_Click(object sender, EventArgs e)
        {
            Form ActualWindow = this;

            WindowControl.TransitInterface(ref ActualWindow, (Form) new ReservationUI(ref system));
        }
Ejemplo n.º 4
0
        private void ConfigButton_Click(object sender, EventArgs e)
        {
            Form thisWindow = this;

            WindowControl.TransitInterface(ref thisWindow, (Form) new Interfaces.ConfigurationUI(ref system));
        }