You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
557 B
22 lines
557 B
using Model;
|
|
|
|
namespace IHM
|
|
{
|
|
public partial class AppShell : Shell
|
|
{
|
|
public Manager Mgr => (App.Current as App).Manager;
|
|
|
|
public AppShell()
|
|
{
|
|
InitializeComponent();
|
|
Routing.RegisterRoute("DashBoard", typeof(DashBoard));
|
|
Routing.RegisterRoute("Inscription", typeof(Inscription));
|
|
Routing.RegisterRoute("ForgetPassword", typeof(ForgetPassword));
|
|
Routing.RegisterRoute("ChangePassword", typeof(ChangePassword));
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
} |