From 1d3108bb056e767cedb2f5f3485762964a7363b3 Mon Sep 17 00:00:00 2001 From: Enzo JOLYS Date: Fri, 10 Mar 2023 11:44:57 +0100 Subject: [PATCH] =?UTF-8?q?Mise=20=C3=A0=20jour=20de=20'Sources/Client/Pro?= =?UTF-8?q?gram.cs'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Sources/Client/Program.cs | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/Sources/Client/Program.cs b/Sources/Client/Program.cs index e057e3a..6fddc77 100644 --- a/Sources/Client/Program.cs +++ b/Sources/Client/Program.cs @@ -1,33 +1,2 @@ // See https://aka.ms/new-console-template for more information - -using Api_lol.Factories; -using Client; -using DTO; -using EntityFramwork; -using EntityFramwork.Factories; -using Model; -using StubLib; - -/* -Console.WriteLine("Start"); -Console.ReadLine(); - -ClientChampions client = new ClientChampions(); -List champions = await client.Get(); -DtoChampions champ = await client.GetChampion("Akali"); -Console.WriteLine(champions.Count); -Console.WriteLine(champ.name); - - -DtoChampions dtoTest = new DtoChampions("toto"); -await client.Post(dtoTest); - -List champions2 = await client.Get(); -Console.WriteLine(champions2.Count); -DtoChampions champ2 = await client.GetChampion("toto"); -Console.WriteLine(champ2.name); - -Console.WriteLine("End"); -Console.ReadLine(); -*/ \ No newline at end of file