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