update Stub classes
continuous-integration/drone/push Build is failing Details

pull/23/head
Antoine PEREDERII 2 years ago
parent c025bb49cd
commit 79b0fa0242

@ -1,11 +1,22 @@
using System;
using Banquale.Model;
namespace Banquale.Stub
{
public class EmptyClass
public class Stub : IPersistanceManager
{
public EmptyClass()
{
}
}
(List<Client>, List<Transactions>) IPersistanceManager.ChargeDonnee()
{
throw new NotImplementedException();
}
void IPersistanceManager.SauvegardeDonnee(List<Client> c, List<Transactions> t)
{
throw new NotImplementedException();
}
}
}

Loading…
Cancel
Save