diff --git a/src/Banquale/Banquale/App.xaml.cs b/src/Banquale/Banquale/App.xaml.cs index 84b3fa7..30ad790 100644 --- a/src/Banquale/Banquale/App.xaml.cs +++ b/src/Banquale/Banquale/App.xaml.cs @@ -6,11 +6,17 @@ public partial class App : Application public Manager MyManager { get; private set; } = new Manager(); + + public App() { - InitializeComponent(); + + MyManager.Donnee(); + + InitializeComponent(); MainPage = new AppShell(); + } }