Statistiques
| Branche: | Révision:

root / GES_PAC / AppShell.xaml.cs @ eac868a1

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

1
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
}