From ff99af99c48ee59370d9ac953024af1b7ce5a8b0 Mon Sep 17 00:00:00 2001 From: TypoMustakes Date: Tue, 5 Dec 2023 18:30:34 +0100 Subject: [PATCH] Setting port number for API endpoint --- WD7UVN_HFT_2023241.Client/Program.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/WD7UVN_HFT_2023241.Client/Program.cs b/WD7UVN_HFT_2023241.Client/Program.cs index 86d9175..df3b158 100644 --- a/WD7UVN_HFT_2023241.Client/Program.cs +++ b/WD7UVN_HFT_2023241.Client/Program.cs @@ -9,10 +9,7 @@ namespace WD7UVN_HFT_2023241.Client static void Main(string[] args) { CompanyDbContext dbContext = new CompanyDbContext(); - RestService rest = new RestService("127.0.0.1", "api"); + RestService rest = new RestService("127.0.0.1:5000", "api"); } - - - } }