Statistiques
| Branche: | Révision:

root / GES_PAC / AppShell.xaml.cs @ 65ad7e66

Historique | Voir | Annoter | Télécharger (432 octets)

1 65ad7e66 Lucas Bihannic
using GES_PAC.View;
2
3
namespace GES_PAC
4
{
5
    public partial class AppShell : Shell
6
    {
7
        public AppShell()
8
        {
9
            InitializeComponent();
10
            Routing.RegisterRoute(nameof(CreateDayView), typeof(CreateDayView));
11
            Routing.RegisterRoute(nameof(CreatePersonView), typeof(CreatePersonView));
12
            Routing.RegisterRoute(nameof(CreatePlaceView), typeof(CreatePlaceView));
13
        }
14
    }
15
16
}