ConsEco/Sources/IHM/Mobile/Planification.xaml.cs

17 lines
269 B

using Model;
namespace IHM.Mobile;
public partial class Planification : ContentPage
{
public Manager Mgr => (App.Current as App).Manager;
public Planification()
{
InitializeComponent();
BindingContext = Mgr;
Mgr.LoadCompte();
}
}