Esempio n. 1
0
        public void ShowConfirmationView()
        {
            appointmentDateSelectionFragment = null;
            var fragment = new AppointmentConfirmationFragment(presenter);

            Activity.NavigateTo(fragment, TransitionEffect.Push);
        }
Esempio n. 2
0
        public void GoBackToHome()
        {
            var fragment = new AppointmentHomeFragment(presenter);

            Activity.NavigateTo(fragment, TransitionEffect.Pop);
            appointmentDateSelectionFragment = null;
        }
Esempio n. 3
0
        public void GoBackToDateSelection()
        {
            if (appointmentDateSelectionFragment == null)
            {
                appointmentDateSelectionFragment = new AppointmentDateSelectionFragment(presenter);
            }

            Activity.NavigateTo(appointmentDateSelectionFragment, TransitionEffect.Pop);
        }
Esempio n. 4
0
 public void ShowAppointmentDateSelectionView()
 {
     appointmentDateSelectionFragment = new AppointmentDateSelectionFragment(presenter);
     Activity.NavigateTo(appointmentDateSelectionFragment, TransitionEffect.Push);
 }