Files
Hoy/JeuHoyEtudiants/JeuHoy_WPF_Natif/Model/GestionFichiersSorties.cs
2023-05-03 11:01:22 -04:00

21 lines
427 B
C#

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