From db44f294f002c66298cff2a8a54a8418d9da34e7 Mon Sep 17 00:00:00 2001 From: David D'ALMEIDA Date: Sun, 26 Mar 2023 11:47:22 +0200 Subject: [PATCH] Supprimer 'EntityFramework_LoL/Sources/ApiLib/ApiManager.cs' --- .../Sources/ApiLib/ApiManager.cs | 32 ------------------- 1 file changed, 32 deletions(-) delete mode 100644 EntityFramework_LoL/Sources/ApiLib/ApiManager.cs diff --git a/EntityFramework_LoL/Sources/ApiLib/ApiManager.cs b/EntityFramework_LoL/Sources/ApiLib/ApiManager.cs deleted file mode 100644 index a479a2c..0000000 --- a/EntityFramework_LoL/Sources/ApiLib/ApiManager.cs +++ /dev/null @@ -1,32 +0,0 @@ -using Model; -using System.Net.Http; - -namespace ApiLib -{ - public partial class ApiManager : IDataManager - { - protected HttpClient HttpClient { get; } - - - public ApiManager(HttpClient httpClient) - { - ChampionsMgr = new ChampionsManager(this); - /* SkinsMgr = new SkinsManager(this); - RunesMgr = new RunesManager(this); - RunePagesMgr = new RunePagesManager(this);*/ - - HttpClient = httpClient; - -/* HttpClient.BaseAddress = new Uri("https://codefirst.iut.uca.fr/containers/arthurvalin-lolcontainer/api"); -*/ - } - - public IChampionsManager ChampionsMgr { get; } - - public ISkinsManager SkinsMgr { get; } - - public IRunesManager RunesMgr { get; } - - public IRunePagesManager RunePagesMgr { get; } - } -} \ No newline at end of file