From a834bba09bd62dffe6fa12320c1a4b7ef9889aca Mon Sep 17 00:00:00 2001 From: Vincent ASTOLFI Date: Tue, 3 Jan 2023 17:10:53 +0100 Subject: [PATCH] =?UTF-8?q?ajout=20de=20m=C3=A9thode=20dans=20le=20stub?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Sources/Data/Stub.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Sources/Data/Stub.cs b/Sources/Data/Stub.cs index b4973f6..0f4306b 100644 --- a/Sources/Data/Stub.cs +++ b/Sources/Data/Stub.cs @@ -121,6 +121,11 @@ namespace Data { return LoadOperation.LoadOperationsFromOFX(ofx); } + + public string LoadInscrit(string id, string mdp) + { + throw new NotImplementedException(); + } } }