Example #1
0
        private void OnTapRegular(object sender, EventArgs e)
        {
            BusController.SetBusType("Regular");
            BusController.SetBusFee("Regular");
            this.Navigation.PushAsync(new SeatPlanPage());


            //open seatplan for regular
        }
Example #2
0
        private void OnTapDeluxe(object sender, EventArgs e)
        {
            BusController.SetBusType("Deluxe");
            BusController.SetBusFee("Deluxe");
            this.Navigation.PushAsync(new SeatPlanPage());


            //open seatplan for deluxe
        }
Example #3
0
        public void OnTapOrdinary(object sender, EventArgs args)
        {
            BusController.SetBusType("Ordinary");
            BusController.SetBusFee("Ordinary");
            this.Navigation.PushAsync(new SeatPlanPage());


            //open seatplann for ordinary
        }