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.
23 lines
601 B
23 lines
601 B
using ParionsCuite.Modeles;
|
|
using ParionsCuite.DataContractPersistance;
|
|
namespace ParionsCuite;
|
|
|
|
public partial class App : Application
|
|
{
|
|
//public Manageur MyManager { get; private set; } = new Manageur(new Stub.Stub());
|
|
|
|
public Manageur MyManager { get; private set; } = new Manageur(new DataContractPersistance.DataContractPersistance());
|
|
|
|
public App()
|
|
{
|
|
InitializeComponent();
|
|
MyManager.Charge_Donnee();
|
|
MainPage = new AppShell();
|
|
MyManager.Persistance = new DataContractPersistance.DataContractPersistance();
|
|
MyManager.Save_Data();
|
|
|
|
|
|
|
|
}
|
|
}
|