21 lines
427 B
C#
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();
|
|
}
|
|
}
|
|
} |