using System.Collections.Generic; namespace JeuHoy_WPF_Natif.Model { public class GestionFichiersSorties : IGestionFichiers { public GestionFichiersSorties() { } public List ChargerCoordonnees(string fichier) { throw new System.NotImplementedException(); } public int SauvegarderCoordonnees(string fichier, List lstData) { throw new System.NotImplementedException(); } } }