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.
30 lines
495 B
30 lines
495 B
using Model;
|
|
|
|
namespace IHM.Desktop;
|
|
|
|
public partial class CV_HomePage : ContentView
|
|
{
|
|
public Manager Mgr => (App.Current as App).Manager;
|
|
public CV_HomePage()
|
|
{
|
|
InitializeComponent();
|
|
|
|
Mgr.LoadBanque();
|
|
Mgr.LoadCompte();
|
|
Mgr.LoadBanqueDispo();
|
|
BindingContext = Mgr;
|
|
|
|
|
|
|
|
}
|
|
|
|
private void ImportOFX_Clicked(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
private void AddBanque_Clicked(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
} |