|
|
|
@ -8,15 +8,16 @@ namespace Banquale.Stub
|
|
|
|
|
|
|
|
|
|
(List<Client>, List<Transactions>) IPersistanceManager.ChargeDonnee()
|
|
|
|
|
{
|
|
|
|
|
Client Client1 = new Client("Jacques", "Morice", "J'aimeLesFrites");
|
|
|
|
|
Client Client2 = new Client("Francis", "Begore", "J'aimeLes");
|
|
|
|
|
Client Client3 = new Client("Michel", "Boudout", "MonMdP");
|
|
|
|
|
Console.WriteLine(Client1);
|
|
|
|
|
List<Client> ListeClients = new List<Client>();
|
|
|
|
|
ListeClients.Add(Client1);
|
|
|
|
|
ListeClients.Add(Client2);
|
|
|
|
|
ListeClients.Add(Client3);
|
|
|
|
|
return ListeClients;
|
|
|
|
|
//Client Client1 = new Client("Jacques", "Morice", "J'aimeLesFrites");
|
|
|
|
|
//Client Client2 = new Client("Francis", "Begore", "J'aimeLes");
|
|
|
|
|
//Client Client3 = new Client("Michel", "Boudout", "MonMdP");
|
|
|
|
|
//Console.WriteLine(Client1);
|
|
|
|
|
//List<Client> ListeClients = new List<Client>();
|
|
|
|
|
//ListeClients.Add(Client1);
|
|
|
|
|
//ListeClients.Add(Client2);
|
|
|
|
|
//ListeClients.Add(Client3);
|
|
|
|
|
//return ListeClients;
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void IPersistanceManager.SauvegardeDonnee(List<Client> c, List<Transactions> t)
|
|
|
|
|