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.
25 lines
1.0 KiB
25 lines
1.0 KiB
namespace IHM.Desktop;
|
|
using Model;
|
|
|
|
public partial class CV_Statistiques : ContentView
|
|
{
|
|
public List<Operations> operations;
|
|
public CV_Statistiques()
|
|
{
|
|
InitializeComponent();
|
|
|
|
List<Operation> operations;
|
|
|
|
|
|
// Temporaire pour établir le binding de la vue
|
|
operations = new List<Operation>();
|
|
operations.Add(new("op", 33.44, DateTime.Now, MethodePayement.CB, TagOperation.Divers, false));
|
|
operations.Add(new("course", 45.20, DateTime.Now, MethodePayement.CB, TagOperation.Divers, true));
|
|
operations.Add(new("Orange", 50, DateTime.Now, MethodePayement.CB, TagOperation.Divers, true));
|
|
operations.Add(new("EDF", 55.80, DateTime.Now, MethodePayement.Virement, TagOperation.Energie, true));
|
|
operations.Add(new("EDF", 55.80, DateTime.Now, MethodePayement.Virement, TagOperation.Energie, true));
|
|
operations.Add(new("EDF", 55.80, DateTime.Now, MethodePayement.Virement, TagOperation.Carburant, true));
|
|
|
|
BindingContext = operations;
|
|
}
|
|
} |