From 11788be4bb5bdd2dc4204d5e96a5df027ac3f2c9 Mon Sep 17 00:00:00 2001 From: TypoMustakes Date: Tue, 9 Jan 2024 22:52:59 +0100 Subject: [PATCH] Fixed minor bug. Project considered finished. --- WD7UVN_HFT_2023241.Client/CRUD.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/WD7UVN_HFT_2023241.Client/CRUD.cs b/WD7UVN_HFT_2023241.Client/CRUD.cs index 0e3a4e8..8219643 100644 --- a/WD7UVN_HFT_2023241.Client/CRUD.cs +++ b/WD7UVN_HFT_2023241.Client/CRUD.cs @@ -17,7 +17,7 @@ namespace WD7UVN_HFT_2023241.Client switch (action) { case CRUDActions.GetAll: - method = View.Display; + method = View.DisplayAll; break; case CRUDActions.GetById: method = View.Display; @@ -191,6 +191,7 @@ namespace WD7UVN_HFT_2023241.Client { Console.WriteLine(p.Name + ": " + p.GetValue(item)); } + Console.WriteLine(); } } else