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(); } } }