diff --git a/Sources/IHM/App.xaml.cs b/Sources/IHM/App.xaml.cs
index 2f0051b..f2639a3 100644
--- a/Sources/IHM/App.xaml.cs
+++ b/Sources/IHM/App.xaml.cs
@@ -6,6 +6,7 @@ namespace IHM
public partial class App : Application
{
public Manager Manager { get; set; } = new Manager(new PersLinqToPgSQL());
+
public App()
{
InitializeComponent();
diff --git a/Sources/IHM/AppShellDesktop.xaml.cs b/Sources/IHM/AppShellDesktop.xaml.cs
index 6775d2f..d82d2a2 100644
--- a/Sources/IHM/AppShellDesktop.xaml.cs
+++ b/Sources/IHM/AppShellDesktop.xaml.cs
@@ -10,6 +10,8 @@ namespace IHM
public partial class AppShellDesktop : Shell
{
public Manager Mgr => (App.Current as App).Manager;
+
+
public AppShellDesktop()
{
diff --git a/Sources/IHM/Desktop/CV_DeletePlanification.xaml b/Sources/IHM/Desktop/CV_DeletePlanification.xaml
new file mode 100644
index 0000000..df39c4c
--- /dev/null
+++ b/Sources/IHM/Desktop/CV_DeletePlanification.xaml
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Sources/IHM/Desktop/CV_DeletePlanification.xaml.cs b/Sources/IHM/Desktop/CV_DeletePlanification.xaml.cs
new file mode 100644
index 0000000..330a915
--- /dev/null
+++ b/Sources/IHM/Desktop/CV_DeletePlanification.xaml.cs
@@ -0,0 +1,19 @@
+namespace IHM.Desktop;
+
+public partial class CV_DeletePlanification : ContentView
+{
+ public CV_DeletePlanification()
+ {
+ InitializeComponent();
+ }
+
+ private void Button_Clicked(object sender, EventArgs e)
+ {
+
+ }
+
+ private void Button_Clicked_1(object sender, EventArgs e)
+ {
+
+ }
+}
\ No newline at end of file
diff --git a/Sources/IHM/Desktop/CV_Planification.xaml b/Sources/IHM/Desktop/CV_Planification.xaml
index 7c38479..e6fbc8e 100644
--- a/Sources/IHM/Desktop/CV_Planification.xaml
+++ b/Sources/IHM/Desktop/CV_Planification.xaml
@@ -17,7 +17,7 @@
-
+
@@ -40,6 +40,7 @@
+
diff --git a/Sources/IHM/Desktop/CV_Planification.xaml.cs b/Sources/IHM/Desktop/CV_Planification.xaml.cs
index 890d95c..aebd0ce 100644
--- a/Sources/IHM/Desktop/CV_Planification.xaml.cs
+++ b/Sources/IHM/Desktop/CV_Planification.xaml.cs
@@ -5,11 +5,13 @@ namespace IHM.Desktop;
public partial class CV_Planification : ContentView
{
- public Manager Mgr => (App.Current as App).Manager;
+
public CV_Planification()
{
InitializeComponent();
+
+
}
@@ -21,6 +23,6 @@ public partial class CV_Planification : ContentView
private void Button_Clicked_1(object sender, EventArgs e)
{
-
- }
+ windowAjout.Content = new CV_DeletePlanification();
+ }
}
\ No newline at end of file
diff --git a/Sources/Modele/Manager.cs b/Sources/Modele/Manager.cs
index f771a24..2dddabe 100644
--- a/Sources/Modele/Manager.cs
+++ b/Sources/Modele/Manager.cs
@@ -23,6 +23,9 @@ namespace Model
}
}
}
+
+
+
private Banque selectedBanque;
void OnPropertyChanged(string propertyName) => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
@@ -32,6 +35,7 @@ namespace Model
Pers = persistance;
}
+
public void SupprimerInscritBdd(Inscrit i)
{
Pers.SupprimerInscritBdd(i);
@@ -76,6 +80,8 @@ namespace Model
{
return hash.IsEqualHash(mdpBdd, mdpSent);
}
+
+
}
}