From 3458b46cdeb996fe5068b9cc1bdb8fbaab5d0433 Mon Sep 17 00:00:00 2001 From: majean5 Date: Wed, 1 Jun 2022 16:48:25 +0200 Subject: [PATCH] debut vraie persistance + valider submit fini --- Persistance/DataContractPersistance.cs | 52 ++++++++++++++++++++++++++ WpfApp1/UCRequinValSubmit.xaml | 4 +- WpfApp1/ValiderSubmit.xaml | 2 +- 3 files changed, 55 insertions(+), 3 deletions(-) create mode 100644 Persistance/DataContractPersistance.cs diff --git a/Persistance/DataContractPersistance.cs b/Persistance/DataContractPersistance.cs new file mode 100644 index 0000000..8b5d786 --- /dev/null +++ b/Persistance/DataContractPersistance.cs @@ -0,0 +1,52 @@ +using Modèle; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Persistance +{ + public class DataContractPersistance : IPersistanceManager + { + public List LoadRequins() + { + throw new NotImplementedException(); + } + + public List LoadRequinsAdd() + { + throw new NotImplementedException(); + } + + public List LoadRequinsEdit() + { + throw new NotImplementedException(); + } + + public List LoadUsers() + { + throw new NotImplementedException(); + } + + public void SaveRequins(List reqs) + { + throw new NotImplementedException(); + } + + public void SaveRequinsAdd(List reqs) + { + throw new NotImplementedException(); + } + + public void SaveRequinsEdit(List reqs) + { + throw new NotImplementedException(); + } + + public void SaveUsers(List pers) + { + throw new NotImplementedException(); + } + } +} diff --git a/WpfApp1/UCRequinValSubmit.xaml b/WpfApp1/UCRequinValSubmit.xaml index 9c70cf2..5a8e87c 100644 --- a/WpfApp1/UCRequinValSubmit.xaml +++ b/WpfApp1/UCRequinValSubmit.xaml @@ -7,7 +7,7 @@ mc:Ignorable="d" d:DesignHeight="450" d:DesignWidth="800"> - + @@ -32,7 +32,7 @@ - + - +