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.

18 lines
386 B

using CanYouBuildIt.Model;
namespace CanYouBuildIt;
public partial class App : Application
{
public Manager manager { get; private set; } = new Manager(new Stub());
public App()
{
manager.chargeDonne();
manager.Persi = new DataContractPersistance.DataContractPers();
manager.sauvegardeDonnee();
InitializeComponent();
MainPage = new AppShell();
}
}