From e9bde48eae296584ecd91384dbee185a72b1fae8 Mon Sep 17 00:00:00 2001 From: baollier1 Date: Fri, 3 Mar 2023 15:24:23 +0100 Subject: [PATCH] regler erreur build :tada: --- Sources/apiLOL/EFDataManager.cs | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/Sources/apiLOL/EFDataManager.cs b/Sources/apiLOL/EFDataManager.cs index 28f9a32..7814fa0 100644 --- a/Sources/apiLOL/EFDataManager.cs +++ b/Sources/apiLOL/EFDataManager.cs @@ -12,9 +12,17 @@ namespace apiLOL public EFDataManager(MyDbContext context) { _context = context; - } - - // Implement the interface - - } + } + + public IChampionsManager ChampionsMgr => throw new NotImplementedException(); + + public ISkinsManager SkinsMgr => throw new NotImplementedException(); + + public IRunesManager RunesMgr => throw new NotImplementedException(); + + public IRunePagesManager RunePagesMgr => throw new NotImplementedException(); + + // Implement the interface + + } }